diff options
author | Daniel Schadt <kingdread@gmx.de> | 2025-06-12 20:28:37 +0200 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2025-06-12 20:28:37 +0200 |
commit | abba548d84fa66bd7ac81683d3a70611cd6a8a3b (patch) | |
tree | 9343994c998cc84970a92510626b3a62e3fa46d9 /.gitlab-ci.yml | |
parent | cf25779d218a4ace062f3c0549c0f2901a0c2d6a (diff) | |
parent | a52781d2e039ccf9f984e06a4ff3aa5e02caff8b (diff) | |
download | fietsboek-abba548d84fa66bd7ac81683d3a70611cd6a8a3b.tar.gz fietsboek-abba548d84fa66bd7ac81683d3a70611cd6a8a3b.tar.bz2 fietsboek-abba548d84fa66bd7ac81683d3a70611cd6a8a3b.zip |
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9263e91..20307c4 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:bullseye + image: python:bookworm # Pip's cache doesn't store the python packages # https://pip.pypa.io/en/stable/topics/caching/ # @@ -17,16 +17,15 @@ default: before_script: - python --version # For debugging + - dpkg -s libsqlite3-0 - pip install tox test: + parallel: + matrix: + - DB: ["sqlite", "postgres"] script: - - 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 + - ci/run_tests.sh $DB # test-pypy: # image: pypy:3 |