From 5929e94be06f69d4ed3b980eb877642ae71860ef Mon Sep 17 00:00:00 2001 From: Bryan Brancotte <bryan.brancotte@pasteur.fr> Date: Mon, 12 Feb 2024 10:59:20 +0000 Subject: [PATCH] Update .gitlab-ci.yml --- .gitlab-ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index df364c3..ad8ee64 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,3 +1,16 @@ +run_tests: + image: "python:$VERSION" + script: + - pip install -e .[dev] + - export PYTHONPATH="$(pwd)" + - coverage run --source . run_tests.py + - coverage report -m + parallel: + matrix: + - VERSION: ['3.8', '3.11'] + + + upload: stage: deploy rules: -- GitLab