From 2e3e41047f78e127d4584fb71eb1b1a3cd37205f Mon Sep 17 00:00:00 2001 From: Dominique Benielli <dominique.benielli@univ-amu.fr> Date: Tue, 6 May 2025 11:08:33 +0200 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cb26f6b..08495d0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -111,10 +111,11 @@ ubuntu:X86_64: image: registry.lis-lab.fr:5005/dev/ltfatpy/ubuntu:X86_64 tags: - docker - script: + before_script: - conda create -n py39 Python=3.9 - conda activate py39 - pip3 install -e . --no-deps + script: - python3 -m pytest artifacts: when: always @@ -128,10 +129,11 @@ ubuntu:i686: image: registry.lis-lab.fr:5005/dev/ltfatpy/ubuntu:i686 tags: - docker - script: + before_script: - conda create -n py39 Python=3.9 - conda activate py39 - pip3 install -e . --no-deps + script: - python3 -m pytest artifacts: when: always -- GitLab