Skip to content

Commit 1bf65d9

Browse files
authored
Raise myst-nb execution timeout to fix flaky Read the Docs builds (#495)
The logo animation notebook (docs/source/logo.md) renders 360 frames and encodes them with libvpx-vp9, which takes close to 3 minutes on Read the Docs builders. The 180 s nb_execution_timeout was intermittently exceeded, causing docs builds to fail with CellTimeoutError.
1 parent 6684a23 commit 1bf65d9

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

docs/source/conf.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,9 @@
7979

8080
# myst-nb configuration
8181
nb_execution_mode = "cache"
82-
nb_execution_timeout = 180
82+
# Generating the logo animation (logo.md) takes ~3 minutes on Read the Docs
83+
# builders, which intermittently exceeded the previous 180 s limit.
84+
nb_execution_timeout = 600
8385
nb_execution_raise_on_error = True
8486

8587

0 commit comments

Comments
 (0)