diff options
| author | georg | 2023-03-09 19:54:58 +0000 |
|---|---|---|
| committer | georg | 2023-03-15 23:38:39 +0000 |
| commit | 596696dfbc605089ae7b8f2d91274e8554bb77ae (patch) | |
| tree | 7de92932fcab847a41e5319bb37bdc0c2d73b46b | |
| parent | daa17a3e9c3e7ac5a97e7c7ab10a382abd7d7562 (diff) | |
CI: Add python3.{7,8,9,10,11} test jobs
Closes #187
| -rw-r--r-- | .gitlab-ci.yml | 30 |
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 | |||
| 67 | tests:python3.7: | ||
| 68 | image: $CONTAINER_REGISTRY:python3.7 | ||
| 69 | stage: test | ||
| 70 | script: | ||
| 71 | - python3 -m unittest discover -v | ||
| 72 | |||
| 73 | tests:python3.8: | ||
| 74 | image: $CONTAINER_REGISTRY:python3.8 | ||
| 75 | stage: test | ||
| 76 | script: | ||
| 77 | - python3 -m unittest discover -v | ||
| 78 | |||
| 79 | tests:python3.9: | ||
| 80 | image: $CONTAINER_REGISTRY:python3.9 | ||
| 81 | stage: test | ||
| 82 | script: | ||
| 83 | - python3 -m unittest discover -v | ||
| 84 | |||
| 85 | tests:python3.10: | ||
| 86 | image: $CONTAINER_REGISTRY:python3.10 | ||
| 87 | stage: test | ||
| 88 | script: | ||
| 89 | - python3 -m unittest discover -v | ||
| 90 | |||
| 91 | tests:python3.11: | ||
| 92 | image: $CONTAINER_REGISTRY:python3.11 | ||
| 93 | stage: test | ||
| 94 | script: | ||
| 95 | - python3 -m unittest discover -v | ||
