Skip to content

Commit 0bb84d9

Browse files
authored
test: increase tutorial test timeout (#1360)
1 parent 0ab3a14 commit 0bb84d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/tutorials_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def test_tutorials(notebook_path):
2222
"""Test that all notebooks in the tutorials directory can be executed."""
2323
with open(notebook_path) as f:
2424
nb = nbformat.read(f, as_version=4)
25-
ep = ExecutePreprocessor(timeout=600, kernel_name='python3')
25+
ep = ExecutePreprocessor(timeout=1200, kernel_name='python3')
2626
print(f"Executing notebook {notebook_path}")
2727
try:
2828
ep.preprocess(nb, {'metadata': {'path': os.path.dirname(notebook_path)}})

0 commit comments

Comments
 (0)