Skip to content

Commit d64ba39

Browse files
committed
MAINT: Increase notebook timeout value
Increase notebook timeout value: set it to 3600 s (60 minutes; the default value is 300 s). Fixes: ``` __ /home/runner/work/nifreeze/nifreeze/docs/notebooks/bold_realignment.ipynb ___ A cell timed out while it was being executed, after 300 seconds. The message was: Cell execution timed out. ``` raised for example at: https://github.com/nipreps/nifreeze/actions/runs/15102456036/job/42445432169#step:15:43
1 parent 31f0601 commit d64ba39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/run_notebooks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@
2828
# Find and run the notebooks
2929
notebooks = glob.glob("docs/notebooks/*.ipynb")
3030

31-
sys.exit(subprocess.call(["pytest", "--nbmake"] + notebooks))
31+
sys.exit(subprocess.call(["pytest", "--nbmake", "--nbmake-timeout=3600"] + notebooks))

0 commit comments

Comments
 (0)