From 012261740a2741a16b60c0f11185abf4d5df22e8 Mon Sep 17 00:00:00 2001 From: fspreck <f.spreckelsen@indiscale.com> Date: Thu, 27 Oct 2022 17:28:19 +0200 Subject: [PATCH] WIP: Pipeline --- .gitlab-ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0e666c6b..2febf142 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -59,8 +59,13 @@ unittest_py3.8: stage: test needs: [ ] image: python:3.8 - script: + script: &python_test_script - touch ~/.pycaosdb.ini + - cd unittests/docker + - cp sources.list.local /etc/apt/ + - mv /etc/apt/sources.list /etc/apt/sources.list.orig + - cat /etc/apt/sources.list.local /etc/apt/sources.list.orig > /etc/apt/sources.list + - apt-get update && apt-get install -y tox - make unittest # Trigger building of server image and integration tests -- GitLab