From 056895bf309ad0aebf496e27cd94c16a78fc44a5 Mon Sep 17 00:00:00 2001 From: Joscha Schmiedt <joscha@schmiedt.dev> Date: Tue, 17 Sep 2024 20:58:40 +0200 Subject: [PATCH] PIPELINE: Add sourcing of venv to gitlab ci --- .gitlab-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0146fa2..946c2dd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -96,12 +96,14 @@ test-debug: tags: [ docker ] stage: test script: + - source /venv/bin/activate - make test-debug test-release: tags: [ docker ] stage: test - script: + script: + - source /venv/bin/activate - make test-release trigger_prepare: -- GitLab