Skip to content

Commit 04551ed

Browse files
committed
Fix bash syntax
1 parent 2e5c759 commit 04551ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ jobs:
3333
- name: Run Tests
3434
run: |
3535
if [ "${{ matrix.numpy-version }}" == "1.21" ]; then
36-
PYTEST_EXTRA="-k 'numpy and not jax'"
36+
PYTEST_EXTRA=(-k "numpy and not jax")
3737
fi
38-
pytest $PYTEST_EXTRA
38+
pytest "${PYTEST_EXTRA[@]}"
3939
4040
# Make sure it installs
4141
python setup.py install

0 commit comments

Comments
 (0)