From 063ac5340beaa215e04e09a7220eca63b84eb7a1 Mon Sep 17 00:00:00 2001
From: florian <f.spreckelsen@inidscale.com>
Date: Mon, 14 Nov 2022 16:32:39 +0100
Subject: [PATCH] TST: Add python-version check to python 3.9 unittest

---
 .gitlab-ci.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b3d72859..792ab22f 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -73,6 +73,8 @@ unittest_py3.9:
   stage: test
   needs: [ ]
   script:
+    # verify that this actually is Python 3.9
+    - python3 -c "import sys; assert sys.version.startswith('3.9')"
     - touch ~/.pycaosdb.ini
     - make unittest
 
-- 
GitLab