From 8e063bc36d2f4934a17ec24afc7a3c36a13c6977 Mon Sep 17 00:00:00 2001
From: lhennig <lhennig@km3net.de>
Date: Thu, 3 Oct 2024 19:59:26 +0200
Subject: [PATCH] Add Python 3.7 testing to CI

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 907bf8f..9ababcb 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -32,13 +32,16 @@ cache:
   make install-dev
 
 test:
-    image: docker.km3net.de/base/python:3.6
-    stage: test
-    script:
-        - *virtualenv_definition
-        - pip list
-        - make test
-
+  image: docker.km3net.de/base/python:$PYTHON_VERSION
+  stage: test
+  script:
+    - *virtualenv_definition
+    - pip list
+    - make test
+  parallel:
+    matrix:
+      - PYTHON_VERSION: "3.6"
+      - PYTHON_VERSION: "3.7"
 
 coverage:
     image: docker.km3net.de/base/python:3.6
-- 
GitLab