summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorgeorg2025-01-09 09:52:47 +0000
committergeorg2025-01-09 09:52:47 +0000
commit29f404bce34706f1902659a8aa713d9c2570cc60 (patch)
treec93d65b8114dc882097ad5dd3f8d869ba1556927 /.gitlab-ci.yml
parent6c966f2afa504570e511ee327f6fff01577ef0fc (diff)
CI: run tests via python3.{13,14}
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8dc9339..93844d7 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -101,3 +101,15 @@ tests:python3.12:
101 stage: test 101 stage: test
102 script: 102 script:
103 - python3 -m unittest discover -v 103 - python3 -m unittest discover -v
104
105tests:python3.13:
106 image: $CONTAINER_REGISTRY:python3.13
107 stage: test
108 script:
109 - python3 -m unittest discover -v
110
111tests:python3.14:
112 image: $CONTAINER_REGISTRY:python3.14
113 stage: test
114 script:
115 - python3 -m unittest discover -v