summaryrefslogtreecommitdiff
path: root/.github/workflows/pip-build-windows.yml
diff options
context:
space:
mode:
authorVincent Rouvreau <vincent.rouvreau@inria.fr>2022-01-03 22:50:50 +0100
committerVincent Rouvreau <vincent.rouvreau@inria.fr>2022-01-03 22:50:50 +0100
commit4cef95eb986dfaaf70aaae7da630db987639b491 (patch)
tree642e4868ef9fa62c275f38fcca29364be033d3be /.github/workflows/pip-build-windows.yml
parentc644e354e93bfad4d9c47f0c5542777d6d0e1715 (diff)
Install pip package after its build
Diffstat (limited to '.github/workflows/pip-build-windows.yml')
-rw-r--r--.github/workflows/pip-build-windows.yml9
1 files changed, 3 insertions, 6 deletions
diff --git a/.github/workflows/pip-build-windows.yml b/.github/workflows/pip-build-windows.yml
index 743497f4..36917d07 100644
--- a/.github/workflows/pip-build-windows.yml
+++ b/.github/workflows/pip-build-windows.yml
@@ -26,7 +26,7 @@ jobs:
ls "C:\vcpkg\installed\x64-windows\bin\"
python -m pip install --user -r .\ext\gudhi-deploy\build-requirements.txt
python -m pip list
- - name: Build python wheel
+ - name: Build python wheel and install it
run: |
mkdir build
cd ".\build\"
@@ -38,13 +38,10 @@ jobs:
cp "C:\vcpkg\installed\x64-windows\bin\gmp.dll" ".\gudhi\"
python setup.py bdist_wheel
ls dist
- - name: Install and test python wheel
- run: |
- Get-Location
- dir
cd ".\dist\"
Get-ChildItem *.whl | ForEach-Object{python -m pip install --user $_.Name}
- cd ..
+ - name: Test python wheel
+ run: |
Get-Location
dir
python -m pip install --user pytest