1
0
Fork 0

CI: Add python3.{7,8,9,10,11} test jobs

Closes #187
This commit is contained in:
georg 2023-03-09 19:54:58 +00:00
parent daa17a3e9c
commit 596696dfbc
1 changed files with 30 additions and 0 deletions

View File

@ -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