From 3bd8aa28977c72639adeb57e27018a96c524e5f3 Mon Sep 17 00:00:00 2001 From: Laura Liberda Date: Wed, 24 Feb 2021 17:14:11 +0100 Subject: [PATCH] playwright extractor testing --- .gitlab-ci.yml | 35 ++++++++++++++++++++--------------- 1 file changed, 20 insertions(+), 15 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 32e358384..2d107de6c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -52,19 +52,24 @@ py3.9-download: # script: # - ./devscripts/run_tests.sh -# uncomment once the images are available -# https://github.com/microsoft/playwright-python/issues/338 -# playwright-tests-core: -# image: mcr.microsoft.com/playwright-python:focal -# variables: -# HDL_TEST_SET: core -# script: -# - ./devscripts/run_tests.sh +playwright-tests-core: + image: mcr.microsoft.com/playwright:focal + variables: + HDL_TEST_SET: core + before_script: + - apt-get update && apt-get install -y bash && apt-get clean + - pip install nose + script: + - ./devscripts/run_tests.sh -# playwright-tests-download: -# image: mcr.microsoft.com/playwright-python:focal -# variables: -# HDL_TEST_SET: download -# HDL_TEST_PLAYWRIGHT_DOWNLOAD: 1 -# script: -# - ./devscripts/run_tests.sh +playwright-tests-download: + image: mcr.microsoft.com/playwright:focal + variables: + HDL_TEST_SET: download + HDL_TEST_PLAYWRIGHT_DOWNLOAD: 1 + allow_failure: true + before_script: + - apt-get update && apt-get install -y bash && apt-get clean + - pip install nose + script: + - ./devscripts/run_tests.sh