From 361882ce344e9ce91089cb10eca037f68d65b191 Mon Sep 17 00:00:00 2001 From: Martin Weise <martin.weise@tuwien.ac.at> Date: Sun, 7 Jan 2024 16:00:16 +0100 Subject: [PATCH] gunicorn --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 95c5dcc1a0..6a2c8889bd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -31,7 +31,7 @@ build-analyse-service: stage: build script: - "pip install pipenv" - - "cd ./dbrepo-analyse-service && pipenv install --system --deploy" + - "cd ./dbrepo-analyse-service && pipenv install gunicorn && pipenv install --system --deploy" build-data-service: image: maven:3-openjdk-17 @@ -112,7 +112,7 @@ test-analyse-service: - build-analyse-service script: - "pip install pipenv" - - "cd ./dbrepo-analyse-service && pipenv install --system --deploy" + - "cd ./dbrepo-analyse-service && pipenv install gunicorn && pipenv install --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