From 16b4103f4ff62c7e69def385482d07852151680d Mon Sep 17 00:00:00 2001
From: Florian Spreckelsen <f.spreckelsen@indiscale.com>
Date: Wed, 20 Mar 2024 13:18:45 +0100
Subject: [PATCH] PIPELINE: Add Python 3.12 and 3.13 (allow_failure: true)

---
 .gitlab-ci.yml | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 7a731f56..bfd8eb2d 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -104,9 +104,18 @@ unittest_py3.12:
   tags: [ docker ]
   stage: test
   needs: [ ]
-  image: python:3.11
+  image: python:3.12
+  script: *python_test_script
+
+unittest_py3.13:
+  allow_failure: true
+  tags: [ docker ]
+  stage: test
+  needs: [ ]
+  image: python:3.13
   script: *python_test_script
 
+
 # Trigger building of server image and integration tests
 trigger_build:
   stage: deploy
-- 
GitLab