Skip to content

Commit

Permalink
BUG: Exclude EnvironmentCheck notebook for Python 3.8
Browse files Browse the repository at this point in the history
Hangs in CI.
  • Loading branch information
thewtex committed Aug 28, 2024
1 parent a74fd8c commit 7f4c752
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/notebook-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,11 @@ jobs:
python3 -m pip install "itk>=5.3.0"
- name: Test notebooks
if: ${{ matrix.python-version != '3.8' }}
run: |
pytest --nbmake --nbmake-timeout=3000 examples/EnvironmentCheck.ipynb examples/Hello3DWorld.ipynb examples/NumPyArrayPointSet.ipynb examples/integrations/**/*.ipynb
- name: Test notebooks
if: ${{ matrix.python-version == '3.8' }}
run: |
pytest --nbmake --nbmake-timeout=3000 examples/Hello3DWorld.ipynb examples/NumPyArrayPointSet.ipynb examples/integrations/**/*.ipynb

0 comments on commit 7f4c752

Please sign in to comment.