diff options
author | Daniel Schadt <kingdread@gmx.de> | 2023-08-02 20:58:32 +0200 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2023-08-02 20:58:32 +0200 |
commit | 2b89bec8ab0b6fecd9484713f565a7557c50842e (patch) | |
tree | e2294f2c8a872c173b7d9c91087e5cb2aea58b44 /.gitlab-ci.yml | |
parent | db22180e1392758140a9fa5d046f09f22d6588f7 (diff) | |
parent | 971fd5dd89e1cd26cfffdd5fdd68873dac90bc94 (diff) | |
download | fietsboek-2b89bec8ab0b6fecd9484713f565a7557c50842e.tar.gz fietsboek-2b89bec8ab0b6fecd9484713f565a7557c50842e.tar.bz2 fietsboek-2b89bec8ab0b6fecd9484713f565a7557c50842e.zip |
Merge branch 'tileproxy-test'
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8562f11..e8971aa 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,7 +4,7 @@ variables: PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip" default: - image: python:latest + image: python:bullseye # Pip's cache doesn't store the python packages # https://pip.pypa.io/en/stable/topics/caching/ # @@ -24,6 +24,8 @@ test: - pip install poetry && pip install "playwright=="$(poetry show playwright | grep version | cut -f 2 -d ":" | tr -d " ") - playwright install firefox - playwright install-deps + - apt install -y redis-server + - redis-server >/dev/null 2>&1 & - tox -e python -- --browser firefox test-pypy: @@ -36,6 +38,8 @@ test-pypy: - pip install poetry && pip install "playwright=="$(poetry show playwright | grep version | cut -f 2 -d ":" | tr -d " ") - playwright install firefox - playwright install-deps + - apt install -y redis-server + - redis-server >/dev/null 2>&1 & - tox -e pypy3 -- --browser firefox lint: |