From 596696dfbc605089ae7b8f2d91274e8554bb77ae Mon Sep 17 00:00:00 2001 From: georg Date: Thu, 9 Mar 2023 19:54:58 +0000 Subject: [PATCH] CI: Add python3.{7,8,9,10,11} test jobs Closes #187 --- .gitlab-ci.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index eaa4719..c3a76c7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -63,3 +63,33 @@ tests:gentoo: <<: *prepare_env script: - su - mat2 -c "python3 -m unittest discover -v" + +tests:python3.7: + image: $CONTAINER_REGISTRY:python3.7 + stage: test + script: + - python3 -m unittest discover -v + +tests:python3.8: + image: $CONTAINER_REGISTRY:python3.8 + stage: test + script: + - python3 -m unittest discover -v + +tests:python3.9: + image: $CONTAINER_REGISTRY:python3.9 + stage: test + script: + - python3 -m unittest discover -v + +tests:python3.10: + image: $CONTAINER_REGISTRY:python3.10 + stage: test + script: + - python3 -m unittest discover -v + +tests:python3.11: + image: $CONTAINER_REGISTRY:python3.11 + stage: test + script: + - python3 -m unittest discover -v