From 17a5cb224832c9645de023dc6ab588eccce8a6a1 Mon Sep 17 00:00:00 2001 From: ROUVREAU Vincent Date: Wed, 19 May 2021 11:25:56 +0200 Subject: Quite strange how to deal with powershell --- .github/workflows/pip-packaging-windows.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to '.github/workflows/pip-packaging-windows.yml') 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: -- cgit v1.2.3