From ad096e50d5dc74977713c2f92e2b1734893d95e2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20tom=20W=C3=B6rden?= <h.tomwoerden@indiscale.com>
Date: Fri, 10 Jan 2025 12:40:11 +0100
Subject: [PATCH] FIX: string concatenation

---
 .gitlab-ci.yml | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 91fd8fd..cd3e46b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -138,7 +138,7 @@ unittest_py3.9:
   tags: [cached-dind]
   stage: test
   variables:
-    PYVER: 3.9
+    PYVER: "3.9"
   image: python:3.9
   script: &python_test_script
     # install dependencies
@@ -147,15 +147,15 @@ unittest_py3.9:
     - pip install git+https://gitlab.indiscale.com/caosdb/src/caosdb-pylib.git@${PYLIB}
     - pip install git+https://gitlab.indiscale.com/caosdb/src/caosdb-advanced-user-tools.git@${ADVANCED}
     - pip install .[h5-crawler,spss,rocrate]
-    - echo "import sys; assert sys.version.startswith('"$PYVER"')"
-    - python3 -c "import sys; assert sys.version.startswith('"$PYVER"')"
+    - echo "import sys; assert sys.version.startswith('$PYVER')"
+    - python3 -c "import sys; assert sys.version.startswith('$PYVER')"
     # actual test
     - caosdb-crawler --help
     - pytest --cov=caosdb -vv ./unittests
 
 unittest_py3.10:
   variables:
-    PYVER: 3.10
+    PYVER: "3.10"
   stage: test
   tags: [cached-dind]
   image: python:3.10
@@ -163,7 +163,7 @@ unittest_py3.10:
 
 unittest_py3.11:
   variables:
-    PYVER: 3.9
+    PYVER: "3.11"
   tags: [cached-dind]
   stage: test
   image: python:3.11
@@ -171,7 +171,7 @@ unittest_py3.11:
 
 unittest_py3.12:
   variables:
-    PYVER: 3.12
+    PYVER: "3.12"
   stage: test
   tags: [cached-dind]
   image: python:3.12
@@ -179,7 +179,7 @@ unittest_py3.12:
 
 unittest_py3.13:
   variables:
-    PYVER: 3.13
+    PYVER: "3.13"
   tags: [cached-dind]
   stage: test
   image: python:3.13
-- 
GitLab