Skip to content
Draft
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
21 changes: 21 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -275,3 +275,24 @@ jobs:
- name: Run pytest with nbmake
run: |
pytest --nbmake --nbmake-kernel="${{ env.WATERTAP_KERNEL_NAME }}" **/*.ipynb
- name: Clone watertap-academy repository
uses: actions/checkout@v4
with:
repository: watertap-org/watertap_academy_fall_2025
path: watertap_academy_fall_2025

- name: Install academy kernel
run: |
jupyter kernelspec list
python -m ipykernel install --user --name "watertap-academy"
jupyter kernelspec list

- name: Run pytest on academy notebooks
run: |
cd watertap_academy_fall_2025
echo '::group::Running pytest on notebooks'
if ! pytest --nbmake --nbmake-kernel="watertap-academy" **/*.ipynb; then
echo "Pytest failed!"
exit 1
fi
echo '::endgroup::'
Loading