Skip to content
Closed
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
7 changes: 7 additions & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,3 +353,10 @@ def setup(app):
suppress_warnings = [
"etoc.toctree", # Suppress warnings about unexpected toctree entries
]

# These tutorials depend on external network access and local webhook timing.
# Skip executing them in docs CI to avoid flaky myst-nb execution failures.
nb_execution_excludepatterns = [
"getting-started/10-minutes-to-tiled.md",
"getting-started/webhooks.md",
]
4 changes: 3 additions & 1 deletion docs/source/getting-started/10-minutes-to-tiled.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,9 @@ We can open the files here or in any other program. They are now just files on o
local disk.

```{code-cell} ipython3
!cat my_table.csv
from pathlib import Path

print(Path("my_table.csv").read_text())
```

Let's download an image dataset as a PNG file.
Expand Down