aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Schadt <kingdread@gmx.de>2023-01-25 20:01:31 +0100
committerDaniel Schadt <kingdread@gmx.de>2023-01-25 20:01:31 +0100
commitced76d192665b5cc8fe390148537334fccbb6534 (patch)
tree2f952c7c28f6ceb27c011a1b404fc777e8a3e53d
parentb875574c5cbaad0b429bd6a278f1fa99d2a988d0 (diff)
downloadfietsboek-ced76d192665b5cc8fe390148537334fccbb6534.tar.gz
fietsboek-ced76d192665b5cc8fe390148537334fccbb6534.tar.bz2
fietsboek-ced76d192665b5cc8fe390148537334fccbb6534.zip
install right playwright version in pypy3 env
If we install playwright without specifying a version, we'll get the latest one, which might not be what the virtual env expects.
-rw-r--r--.gitlab-ci.yml4
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: