From bdc4ae72d772b922e2cee3982669777ce9b50c1d Mon Sep 17 00:00:00 2001
From: Dominique Benielli <dominique.benielli@univ-amu.fr>
Date: Thu, 15 May 2025 23:36:43 +0200
Subject: [PATCH] Update .gitlab-ci.yml file

---
 .gitlab-ci.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 5a6bd12..e7b24c5 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,8 +22,8 @@ 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
-        - pip install -e .[doc]
+        - # if [ -f requirements.txt ]; then pip3 install -r requirements.txt; fi
+        - pip3 install -e .[doc]
         - rm -Rf build
         - python3 setup.py build_sphinx
     artifacts:
-- 
GitLab