Skip to content
Snippets Groups Projects
Commit ee4c1af2 authored by Thibault Allenet's avatar Thibault Allenet
Browse files

add installation of dependancies before testing

parent f8fbe256
No related branches found
No related tags found
No related merge requests found
......@@ -17,6 +17,13 @@ release:pip:ubuntu:
- python --version
- python -m pip wheel -w wheelhouse .
- echo "Tests"
- >
for DEP_NAME in $DEPS_NAMES; do
echo "current dep $DEP_NAME"
cd $DEP_NAME
pip install . -v
cd ..
done
- export WHL_NAME=$(find . -name "$CI_PROJECT_NAME*.whl")
- pip install $WHL_NAME
- cd ..
......@@ -26,7 +33,6 @@ release:pip:ubuntu:
# https://stackoverflow.com/questions/56908227/how-to-test-python-wheels-on-ci
############################################################################
- rm -r src
- rm -r toto
- mv $CI_PROJECT_NAME src
- ls src
############################################################################
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment