From 41bab4da6a47224470a9c4b45fe9e6d7abc1ad7d Mon Sep 17 00:00:00 2001
From: florian <f.spreckelsen@inidscale.com>
Date: Thu, 19 Jan 2023 15:07:33 +0100
Subject: [PATCH] TST: Add Python 3.7 to unittest pipeline

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 1ca20db4..80f38616 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -134,16 +134,22 @@ unittest_py39:
     - python3 -c "import caosdb; print('CaosDB Version:', caosdb.__version__)"
     - tox
 
-unittest_py38:
+unittest_py37:
   tags: [docker]
   stage: unittest
-  image: python:3.8
+  image: python:3.7
   script: &python_test_script
     - pip install nose pandas pytest pytest-cov gitignore-parser openpyxl>=3.0.7 xlrd==1.2 h5py
     - pip install git+https://gitlab.indiscale.com/caosdb/src/caosdb-pylib.git@dev
     - pip install .
     - pytest --cov=caosadvancedtools unittests
 
+unittest_py38:
+  tags: [docker]
+  stage: unittest
+  image: python:3.8
+  script: *python_test_script
+
 unittest_py310:
   tags: [docker]
   stage: unittest
-- 
GitLab