From 655cb000da2f41c5ce0fa6df999551904e3b0275 Mon Sep 17 00:00:00 2001 From: "i.nueske" <i.nueske@indiscale.com> Date: Tue, 17 Dec 2024 10:22:16 +0100 Subject: [PATCH] CI: Remove python 3.8 tests from pipeline --- .gitlab-ci.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5f9d7fe4..f3000856 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -135,21 +135,15 @@ unittest_py311: - python3 -c "import linkahead; print('LinkAhead Version:', linkahead.__version__)" - tox -unittest_py38: +unittest_py39: tags: [docker] stage: unittest - image: python:3.8 + image: python:3.9 script: &python_test_script - pip install --break-system-packages git+https://gitlab.indiscale.com/caosdb/src/caosdb-pylib.git@dev - pip install --break-system-packages .[all] - pytest --cov=caosadvancedtools unittests -unittest_py39: - tags: [docker] - stage: unittest - image: python:3.9 - script: *python_test_script - unittest_py310: tags: [docker] stage: unittest -- GitLab