Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions .github/workflows/notebook-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,16 @@ jobs:
- uses: actions/setup-python@v3
with:
python-version: '3.9'
- uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'zulu'
- name: Install test dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[test]"
python3 -m pip install --upgrade pip
python3 -m pip install -e ".[test]"
python3 -m pip install pyimagej
python3 -c "import imagej; ij = imagej.init('2.5.0'); print(ij.getVersion())"
- name: Test notebooks
run: |
pytest --nbmake --nbmake-timeout=3000 examples/*ipynb
pytest --nbmake --nbmake-timeout=3000 examples/*ipynb
Loading