diff options
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4905fc5..6637f34 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -29,7 +29,9 @@ test: test-pypy: image: pypy:3 script: - - pip install playwright && playwright install firefox && playwright install-deps + - pip install poetry && pip install "playwright=="$(poetry show playwright | grep version | cut -f 2 -d ":" | tr -d " ") + - playwright install firefox + - playwright install-deps - tox -e pypy3 -- --browser firefox lint: |