Skip to content

Commit

Permalink
test without numba first
Browse files Browse the repository at this point in the history
  • Loading branch information
jthurner committed Dec 6, 2024
1 parent 94701c4 commit 9de7dbd
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/run_tests_develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,15 +100,21 @@ jobs:
- name: Install dependencies
run: |
uv sync --extra test --extra plotting
- name: Test without numba
if: ${{ matrix.python-version == '3.11' }}
run: |
uv pip uninstall numba
uv run pytest --nbmake -n auto "./tutorials"
- name: Test with pytest
run: |
uv sync --extra test --extra plotting
uv run pytest --nbmake -n auto "./tutorials"
- name: Test without numba
if: ${{ matrix.python-version == '3.11' }}
run: |
uv pip uninstall numba
uv run pytest --nbmake -n auto "./tutorials"
docs_check:
name: Sphinx docs check
runs-on: ubuntu-latest
Expand Down

0 comments on commit 9de7dbd

Please sign in to comment.