Skip to content

Commit

Permalink
Merge pull request #761 from thewtex/ci-python-3-8-environment-check
Browse files Browse the repository at this point in the history
BUG: Exclude EnvironmentCheck notebook for Python 3.8
  • Loading branch information
thewtex authored Aug 30, 2024
2 parents fec3bc5 + 3b13db1 commit edff2bc
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 edff2bc

Please sign in to comment.