summaryrefslogtreecommitdiff
path: root/.github/workflows/pip-packaging-windows.yml
diff options
context:
space:
mode:
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: