diff --git a/docs/source/conf.py b/docs/source/conf.py index ac2eb6317..62166f791 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -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", +] diff --git a/docs/source/getting-started/10-minutes-to-tiled.md b/docs/source/getting-started/10-minutes-to-tiled.md index ddd751944..180871f2b 100644 --- a/docs/source/getting-started/10-minutes-to-tiled.md +++ b/docs/source/getting-started/10-minutes-to-tiled.md @@ -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.