From dcf2f491f7a168e74f8a49f8d0562ce8ab68d856 Mon Sep 17 00:00:00 2001 From: Carlos Vega <carlos.vega@lih.lu> Date: Mon, 23 Oct 2023 16:00:12 +0200 Subject: [PATCH] added test for python 3.10 --- .gitlab-ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 80d25d04..7b42a739 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -55,6 +55,15 @@ test_python_3.9: - coverage run --source web manage.py test -v3 - coverage report -m --omit="*/test*,*/migrations*,*debug_utils*" +test_python_3.10: + <<: *test_definition + image: python:3.10 + script: + - cp "local_settings_ci_sqlite.py" "smash/smash/local_settings.py" + - cd smash + - coverage run --source web manage.py test -v3 + - coverage report -m --omit="*/test*,*/migrations*,*debug_utils*" + test_python_3.11: <<: *test_definition image: python:3.11 -- GitLab