From 629b034e99adabcb5178ad6d9b45fa9f68acc40b Mon Sep 17 00:00:00 2001 From: Antoine Gaudron-desjardins <antoine.gaudrondesjardins@student-cs.fr> Date: Fri, 22 Jul 2022 16:11:50 +0200 Subject: [PATCH] fix --- .gitlab-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6fc312a..817a920 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: [] ####################################################################################################################################### #### #### -- GitLab