Skip to content

Commit

Permalink
ci: fix pytest invocation
Browse files Browse the repository at this point in the history
  • Loading branch information
janden committed Jul 9, 2024
1 parent 1b1c13e commit 5fcb9f4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python_skbuild_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
CXX=g++-14
MACOSX_DEPLOYMENT_TARGET=13
CIBW_TEST_REQUIRES: pytest
CIBW_TEST_COMMAND: python3 -m pytest {project}/python/finufft/test
CIBW_TEST_COMMAND: pytest {project}/python/finufft/test

- uses: actions/upload-artifact@v4
with:
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
CXX=g++-14
MACOSX_DEPLOYMENT_TARGET=14
CIBW_TEST_REQUIRES: pytest
CIBW_TEST_COMMAND: python3 -m pytest {project}/python/finufft/test
CIBW_TEST_COMMAND: pytest {project}/python/finufft/test

- uses: actions/upload-artifact@v4
with:
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
CIBW_ENVIRONMENT: >
FFTWDIR='${{ github.workspace }}\fftw'
CIBW_TEST_REQUIRES: pytest
CIBW_TEST_COMMAND: python3 -m pytest {project}/python/finufft/test
CIBW_TEST_COMMAND: pytest {project}/python/finufft/test

- uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 5fcb9f4

Please sign in to comment.