summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitlab-ci.yml30
1 files changed, 30 insertions, 0 deletions
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:
63 <<: *prepare_env 63 <<: *prepare_env
64 script: 64 script:
65 - su - mat2 -c "python3 -m unittest discover -v" 65 - su - mat2 -c "python3 -m unittest discover -v"
66
67tests:python3.7:
68 image: $CONTAINER_REGISTRY:python3.7
69 stage: test
70 script:
71 - python3 -m unittest discover -v
72
73tests:python3.8:
74 image: $CONTAINER_REGISTRY:python3.8
75 stage: test
76 script:
77 - python3 -m unittest discover -v
78
79tests:python3.9:
80 image: $CONTAINER_REGISTRY:python3.9
81 stage: test
82 script:
83 - python3 -m unittest discover -v
84
85tests:python3.10:
86 image: $CONTAINER_REGISTRY:python3.10
87 stage: test
88 script:
89 - python3 -m unittest discover -v
90
91tests:python3.11:
92 image: $CONTAINER_REGISTRY:python3.11
93 stage: test
94 script:
95 - python3 -m unittest discover -v