diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 5b18e37f5238e6a3528986da2801b27f43c2cacd..95c5dcc1a012a612c27dacb09bf566fb6ee28e13 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 --system --deploy"
 
 build-data-service:
   image: maven:3-openjdk-17
@@ -111,7 +111,8 @@ test-analyse-service:
   needs:
     - build-analyse-service
   script:
-    - "pip install -r ./dbrepo-analyse-service/requirements.txt"
+    - "pip install pipenv"
+    - "cd ./dbrepo-analyse-service && 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: