Skip to content

Commit 56f6b2c

Browse files
committed
ENH: Skip BOLD realignment notebook in GHA CI testing
Skip BOLD realignment notebook in GHA CI testing, as it involves running a realignment process for several DataLad datasets, which requires long running times.
1 parent 8aebb9c commit 56f6b2c

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

tools/run_notebooks.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,9 @@
2525
import subprocess
2626
import sys
2727

28-
sys.exit(subprocess.call(["pytest", "--nbmake"] + glob.glob("docs/notebooks/*.ipynb")))
28+
notebooks = glob.glob("docs/notebooks/*.ipynb")
29+
# Make bold_realignment.ipynb Jupyter notebook an exception as it involves running a realignment
30+
# process for several DataLad datasets, which requires long running times.
31+
notebooks.remove("docs/notebooks/bold_realignment.ipynb")
32+
33+
sys.exit(subprocess.call(["pytest", "--nbmake"] + notebooks))

0 commit comments

Comments
 (0)