From 33fcfbf0e364ff299a861eee213e4782f71933e2 Mon Sep 17 00:00:00 2001 From: florian <f.spreckelsen@inidscale.com> Date: Tue, 10 Jan 2023 10:56:49 +0100 Subject: [PATCH] WIP: Pipeline --- .gitlab-ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 54affc31..0430a4f6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -59,13 +59,6 @@ unittest_py3.7: stage: test needs: [ ] image: python:3.7 - script: *python_test_script - -unittest_py3.8: - tags: [ docker ] - stage: test - needs: [ ] - image: python:3.8 script: &python_test_script # Python docker has problems with tox and pip so use plain pytest here - touch ~/.pycaosdb.ini @@ -73,6 +66,13 @@ unittest_py3.8: - pip install . - python -m pytest unittests +unittest_py3.8: + tags: [ docker ] + stage: test + needs: [ ] + image: python:3.8 + script: *python_test_script + # This needs to be changed once Python 3.9 isn't the standard Python in Debian # anymore. unittest_py3.9: -- GitLab