From 29f404bce34706f1902659a8aa713d9c2570cc60 Mon Sep 17 00:00:00 2001 From: georg <georg@riseup.net> Date: Thu, 9 Jan 2025 09:52:47 +0000 Subject: [PATCH] CI: run tests via python3.{13,14} --- .gitlab-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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: stage: test script: - python3 -m unittest discover -v + +tests:python3.13: + image: $CONTAINER_REGISTRY:python3.13 + stage: test + script: + - python3 -m unittest discover -v + +tests:python3.14: + image: $CONTAINER_REGISTRY:python3.14 + stage: test + script: + - python3 -m unittest discover -v -- GitLab