Skip to content

Commit

Permalink
Fix bash syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
asmeurer committed Mar 25, 2024
1 parent f7fb29f commit 689366a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Run Tests
run: |
if [ "${{ matrix.numpy-version }}" == "1.21" || "${{ matrix.numpy-version }}" == "dev" ]; then
if [[ "${{ matrix.numpy-version }}" == "1.21" || "${{ matrix.numpy-version }}" == "dev" ]]; then
PYTEST_EXTRA=(-k "numpy and not jax")
fi
pytest "${PYTEST_EXTRA[@]}"
Expand Down

0 comments on commit 689366a

Please sign in to comment.