Skip to content

Commit

Permalink
Fix pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
wvangeit committed Sep 4, 2024
1 parent a76145c commit b621ada
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ jobs:
CIBW_BUILD: ${{ env.CIBW_PYTHON }}*${{ matrix.arch }}
- name: Run tests
run: |
pip install pytest
pip install ./wheelhouse/*.whl
make test
- name: Upload wheels
Expand Down
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,12 @@ wheel: cache-clean clean
test:
pytest

install:
install: cache-clean
pip install -v .

pipwheel: cache-clean
pip wheel -v .

clean:
rm -rf dist/ wheel/ build/ *.whl wheelhouse/

Expand Down

0 comments on commit b621ada

Please sign in to comment.