Skip to content

Commit edff2bc

Browse files
authored
Merge pull request #761 from thewtex/ci-python-3-8-environment-check
BUG: Exclude EnvironmentCheck notebook for Python 3.8
2 parents fec3bc5 + 3b13db1 commit edff2bc

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/notebook-test.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)