From ecd54e9ef13f346ca65631804d0ab5e629b1a081 Mon Sep 17 00:00:00 2001 From: Martin Weise <martin.weise@tuwien.ac.at> Date: Sun, 7 Jan 2024 16:18:20 +0100 Subject: [PATCH] Need dev deps --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5b906f707f..009a0c17ad 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -33,7 +33,7 @@ build-analyse-service: PIPENV_PIPFILE: "./dbrepo-analyse-service/Pipfile" script: - "pip install pipenv" - - "pipenv install gunicorn && pipenv install --system --deploy" + - "pipenv install gunicorn && pipenv install --dev --system --deploy" build-data-service: image: maven:3-openjdk-17 @@ -116,7 +116,7 @@ test-analyse-service: - build-analyse-service script: - "pip install pipenv" - - "pipenv install gunicorn && pipenv install --system --deploy" + - "pipenv install gunicorn && pipenv install --dev --system --deploy" - "cd ./dbrepo-analyse-service/ && coverage run -m pytest test/test_determine_dt.py test/test_determine_pk.py --junitxml=report.xml && coverage html && coverage report > ./coverage.txt" - "cat ./coverage.txt | grep -o 'TOTAL[^%]*%'" artifacts: -- GitLab