summaryrefslogtreecommitdiff
path: root/.github/workflows/pip-packaging-windows.yml
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2021-05-19 11:25:56 +0200
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2021-05-19 11:25:56 +0200
commit17a5cb224832c9645de023dc6ab588eccce8a6a1 (patch)
treeeb34665d2c873946bf63f9e1f86bb0e01613f7af /.github/workflows/pip-packaging-windows.yml
parentf776e46e43525a4abd0aaeed996a3fcd66ec5c66 (diff)
Quite strange how to deal with powershell
Diffstat (limited to '.github/workflows/pip-packaging-windows.yml')
-rw-r--r--.github/workflows/pip-packaging-windows.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/pip-packaging-windows.yml b/.github/workflows/pip-packaging-windows.yml
index e481d365..2f84cc63 100644
--- a/.github/workflows/pip-packaging-windows.yml
+++ b/.github/workflows/pip-packaging-windows.yml
@@ -51,7 +51,10 @@ jobs:
- name: Install and test python wheel
run: |
cd ${{ github.workspace }}
- python -m pip install --user pytest "build/src/python/dist/*.whl"
+ cd build/src/python/dist/
+ Get-ChildItem *.whl | ForEach-Object{python -m pip install --user $_.Name}
+ cd ${{ github.workspace }}
+ python -m pip install --user pytest
python -m pytest src/python/test/test_alpha_complex.py
- name: Publish on PyPi
env: