From 9f9ab946c03aa92325ba69fe432134c4c0904e77 Mon Sep 17 00:00:00 2001 From: cmoineau <cyril.moineau@cea.fr> Date: Wed, 18 Dec 2024 09:13:06 +0000 Subject: [PATCH] Add back installation of wheels but keep test commented. --- .gitlab/ci/release/pip.gitlab-ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitlab/ci/release/pip.gitlab-ci.yml b/.gitlab/ci/release/pip.gitlab-ci.yml index a8a0260..cecc95e 100644 --- a/.gitlab/ci/release/pip.gitlab-ci.yml +++ b/.gitlab/ci/release/pip.gitlab-ci.yml @@ -26,13 +26,13 @@ release:pip:ubuntu: - echo "Reinstalling each found wheels = ${WHEELS}" # This test should be done in relevent package. - # - > - # for wheel in $WHEELS; do # not sure if a for loop is needed here but just in case multiple wheels are found - # python -m pip install --force-reinstall $wheel[test] - # python -m pip list - # cd $CI_PROJECT_NAME # entering package so python doesn't import local package and in - # python -m pytest unit_tests/* - # done + - > + for wheel in $WHEELS; do # not sure if a for loop is needed here but just in case multiple wheels are found + python -m pip install --force-reinstall $wheel[test] + python -m pip list + cd $CI_PROJECT_NAME # entering package so python doesn't import local package and in + # python -m pytest unit_tests/* + done deploy:pip:ubuntu: extends: -- GitLab