diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 6fc312a7103fe74572051a9a5534f67186672145..817a9200786fd45c140418a525c54082a1f638d1 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -63,6 +63,7 @@ lint-back:
     - pip install pycodestyle
   script:
     - pycodestyle --config=./backend/setup.cnf ./backend
+  dependencies: []
 
 
 lint-front:
@@ -90,11 +91,12 @@ test-back:
   before_script:
     - python3 -m venv venv/
     - source ./venv/bin/activate
-    - pip install -r requirements.txt
+    - pip install -r ./backend/requirements.txt
     - pip install pytest
   script:
     - cd ./backend
     - pytest
+  dependencies: []
 
 #######################################################################################################################################
 ####                                                                                                                               ####