From 914ca9a6f04651a4c307cc9cc48a20ebe1420057 Mon Sep 17 00:00:00 2001 From: thibault allenet <thibault.allenet@cea.fr> Date: Tue, 28 May 2024 14:01:22 +0000 Subject: [PATCH] minor changes --- .gitlab/ci/release/pip.gitlab-ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitlab/ci/release/pip.gitlab-ci.yml b/.gitlab/ci/release/pip.gitlab-ci.yml index fb46c75..d7e8847 100644 --- a/.gitlab/ci/release/pip.gitlab-ci.yml +++ b/.gitlab/ci/release/pip.gitlab-ci.yml @@ -36,8 +36,9 @@ release:pip:ubuntu: # In order to perform the test on the installed package, not on the source code, change the repo name with mv # https://stackoverflow.com/questions/56908227/how-to-test-python-wheels-on-ci ############################################################################ - - mv $CI_PROJECT_NAME toto - - ls toto + - rm -r src + - mv $CI_PROJECT_NAME src + - ls src ############################################################################ - cd toto/$CI_PROJECT_NAME/unit_tests - export PATH_TEST=$(pwd) -- GitLab