From bd26fbeb09f88ea03a96ccef77246a485d9ecfa1 Mon Sep 17 00:00:00 2001 From: Dominique Benielli <dominique.benielli@univ-amu.fr> Date: Thu, 15 May 2025 23:38:08 +0200 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e7b24c5..ca94dd5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,7 +4,7 @@ tests: tags: - docker script: - - # if [ -f requirements.txt ]; then pip3 install -r requirements.txt; fi + - if [ -f requirements.txt ]; then pip3 install -r requirements.txt; fi - pip install -e .[test] - pytest-3 coverage: '/^TOTAL.+?(\d+\%)$/' @@ -22,7 +22,7 @@ doc: script: - export LC_ALL=$(locale -a | grep en_US) - export LANG=$(locale -a | grep en_US) - - # if [ -f requirements.txt ]; then pip3 install -r requirements.txt; fi + - if [ -f requirements.txt ]; then pip3 install -r requirements.txt; fi - pip3 install -e .[doc] - rm -Rf build - python3 setup.py build_sphinx -- GitLab