diff options
author | Daniel Schadt <kingdread@gmx.de> | 2022-12-23 14:39:38 +0100 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2022-12-23 14:39:38 +0100 |
commit | 92cc26e8cd7a809c72e8bfb593ffcea66b88c95a (patch) | |
tree | 2b15d5637893d73fdc0e92012321068f621dbea4 | |
parent | 6b27251575173c1884bcd8bb76cd0cb24a1deaf8 (diff) | |
download | fietsboek-92cc26e8cd7a809c72e8bfb593ffcea66b88c95a.tar.gz fietsboek-92cc26e8cd7a809c72e8bfb593ffcea66b88c95a.tar.bz2 fietsboek-92cc26e8cd7a809c72e8bfb593ffcea66b88c95a.zip |
fix .gitlab-ci YAML syntax
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 084eb35..902d3fd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -21,7 +21,7 @@ before_script: test: script: - - pip install poetry && pip install "playwright=="$(poetry show playwright | grep version | cut -f 2 -d : | tr -d " ") + - 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 python -- --browser firefox |