Skip to content
Merged
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
6 changes: 5 additions & 1 deletion tests/test_tutorials.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@ def _find_tutorial_notebooks():
pytest.skip(f"Tutorials folder not found: {root}")

# Collect all notebooks under doc/tutorials (including any subfolders).
notebooks = sorted(set(root.rglob("*.ipynb")))
# Exclude Jupyter checkpoint files
notebooks = sorted(
p for p in root.rglob("*.ipynb")
if ".ipynb_checkpoints" not in p.parts
)

if not notebooks:
pytest.skip(f"No tutorial notebooks found in: {root}")
Expand Down
Loading