Skip to content

Commit

Permalink
Only run numpy tests for numpy 1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
asmeurer committed Mar 22, 2024
1 parent c7b5780 commit 3e1f24c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ jobs:
- name: Run Tests
run: |
pytest
if [ "${{ matrix.numpy-version }}" == "1.21" ]; then
PYTEST_EXTRA='-k numpy'
fi
pytest $PYTEST_EXTRA
# Make sure it installs
python setup.py install

0 comments on commit 3e1f24c

Please sign in to comment.