From 89c2c10b582b62c838b79eef81c0d30558e7336f Mon Sep 17 00:00:00 2001 From: Dominique Benielli <dominique.benielli@univ-amu.fr> Date: Tue, 13 May 2025 11:45:02 +0200 Subject: [PATCH] Edit .gitlab-ci.yml --- .gitlab-ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 764ba56e..d15c004f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,7 +10,8 @@ tests: - pip3 install git+https://github.com/thibgo/randomscm.git@v0.0.0-alpha - pip3 install git+https://github.com/multi-learn/scikit-multimodallearn.git - pip3 install -e . - - pytest-3 + - pip3 install -e .[dev] + - python -m pytest coverage: '/^TOTAL.+?(\d+\%)$/' artifacts: paths: @@ -54,8 +55,9 @@ pages: - if [ -f requirements.txt ]; then pip3 install -r requirements.txt; fi - pip3 install git+https://github.com/thibgo/randomscm.git@v0.0.0-alpha - pip3 install git+https://github.com/multi-learn/scikit-multimodallearn.git + - pip3 install -e .[dev] - pip3 install -e .[doc] - - pytest-3 + - python -m pytest - sphinx-apidoc -o docs/source summit - cd docs/source - sphinx-build -b html . ../build -- GitLab