diff options
author | Daniel Schadt <kingdread@gmx.de> | 2025-06-08 01:41:41 +0200 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2025-06-08 01:41:41 +0200 |
commit | 93b234e2f2be0e6efae0a7178e0f8c2bbe0fc8d5 (patch) | |
tree | 409c38bf43f7a741f224cb64a4c66410130511c9 /.gitlab-ci.yml | |
parent | 77c58903358cfcca8983b8301d0c14bd2ba73f19 (diff) | |
download | fietsboek-93b234e2f2be0e6efae0a7178e0f8c2bbe0fc8d5.tar.gz fietsboek-93b234e2f2be0e6efae0a7178e0f8c2bbe0fc8d5.tar.bz2 fietsboek-93b234e2f2be0e6efae0a7178e0f8c2bbe0fc8d5.zip |
run postgres tests in CI
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9263e91..b187104 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -20,13 +20,11 @@ default: - 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 |