From ced76d192665b5cc8fe390148537334fccbb6534 Mon Sep 17 00:00:00 2001 From: Daniel Schadt Date: Wed, 25 Jan 2023 20:01:31 +0100 Subject: 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. --- .gitlab-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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: -- cgit v1.2.3