From 9afef63da2b149d8737968d9f56657be82188851 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 25 Aug 2026 06:15:17 +0000 Subject: [PATCH 1/2] Initial plan From 61a0cd34c8809be5d997ac04507ccf48d388c102 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 25 Aug 2026 06:24:00 +0000 Subject: [PATCH 2/2] Skip flaky docs notebook execution in CI Co-authored-by: dylanmcreynolds <40469975+dylanmcreynolds@users.noreply.github.com> --- docs/source/conf.py | 7 +++++++ docs/source/getting-started/10-minutes-to-tiled.md | 4 +++- 2 files changed, 10 insertions(+), 1 deletion(-) 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.