File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -28,10 +28,16 @@ jobs:
2828 run : |
2929 python3 -m pip install --upgrade pip
3030 python3 -m pip install -e ".[test,all]"
31- python3 -m pip install pyimagej
31+ python3 -m pip install pyimagej urllib3
3232 python3 -c "import imagej; ij = imagej.init('2.5.0'); print(ij.getVersion())"
3333 python3 -m pip install "itk>=5.3.0"
3434
3535 - name : Test notebooks
36+ if : ${{ matrix.python-version != '3.8' }}
3637 run : |
3738 pytest --nbmake --nbmake-timeout=3000 examples/EnvironmentCheck.ipynb examples/Hello3DWorld.ipynb examples/NumPyArrayPointSet.ipynb examples/integrations/**/*.ipynb
39+
40+ - name : Test notebooks
41+ if : ${{ matrix.python-version == '3.8' }}
42+ run : |
43+ pytest --nbmake --nbmake-timeout=3000 examples/Hello3DWorld.ipynb examples/NumPyArrayPointSet.ipynb examples/integrations/**/*.ipynb
You can’t perform that action at this time.
0 commit comments