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 29, 2024
1 parent fec3bc5 commit 3b13db1
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/notebook-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,16 @@ jobs:
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -e ".[test,all]"
python3 -m pip install pyimagej
python3 -m pip install pyimagej urllib3
python3 -c "import imagej; ij = imagej.init('2.5.0'); print(ij.getVersion())"
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 3b13db1

Please sign in to comment.