Skip to content

Commit

Permalink
fix path for windows in wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaquier Aurélien Tristan committed Nov 4, 2024
1 parent 14e6089 commit 1b8fab4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,12 @@ jobs:
env:
CIBW_BUILD: ${{ matrix.python }}*${{ matrix.arch }}
CIBW_TEST_REQUIRES: pytest neo[neomatlabio]>=0.5.1 pytest-xdist>=3.3.1
CIBW_TEST_COMMAND: pytest -sx -n auto {project}/tests
CIBW_TEST_COMMAND: |
if [[ $RUNNER_OS == 'Windows' ]]; then
pytest -sx -n auto {project}\\tests
else
pytest -sx -n auto {project}/tests
fi
CIBW_SKIP: "*-musllinux_*"
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 1b8fab4

Please sign in to comment.