diff options
| -rw-r--r-- | .gitlab-ci.yml | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8049977..2226c44 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -21,13 +21,14 @@ before_script:  test:    script: -    - pip install playwright && playwright install firefox +    - pip install playwright && playwright install firefox && playwright install-deps      - tox -e python -- --browser firefox  test-pypy:    image: pypy:3    script: -    - tox -e pypy3 +    - pip install playwright && playwright install firefox && playwright install-deps +    - tox -e pypy3 -- --browser firefox  lint:    script:  | 
