playwright extractor testing

This commit is contained in:
Laura Liberda 2021-02-24 17:14:11 +01:00
parent 3ac7b35f1b
commit 3bd8aa2897

View file

@ -52,19 +52,24 @@ py3.9-download:
# script: # script:
# - ./devscripts/run_tests.sh # - ./devscripts/run_tests.sh
# uncomment once the images are available playwright-tests-core:
# https://github.com/microsoft/playwright-python/issues/338 image: mcr.microsoft.com/playwright:focal
# playwright-tests-core: variables:
# image: mcr.microsoft.com/playwright-python:focal HDL_TEST_SET: core
# variables: before_script:
# HDL_TEST_SET: core - apt-get update && apt-get install -y bash && apt-get clean
# script: - pip install nose
# - ./devscripts/run_tests.sh script:
- ./devscripts/run_tests.sh
# playwright-tests-download: playwright-tests-download:
# image: mcr.microsoft.com/playwright-python:focal image: mcr.microsoft.com/playwright:focal
# variables: variables:
# HDL_TEST_SET: download HDL_TEST_SET: download
# HDL_TEST_PLAYWRIGHT_DOWNLOAD: 1 HDL_TEST_PLAYWRIGHT_DOWNLOAD: 1
# script: allow_failure: true
# - ./devscripts/run_tests.sh before_script:
- apt-get update && apt-get install -y bash && apt-get clean
- pip install nose
script:
- ./devscripts/run_tests.sh