Skip to content

Commit def3c5b

Browse files
authored
Merge pull request #10 from pwrose/master
increased timeout
2 parents 53a2491 + 9b06ea9 commit def3c5b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ def exec_notebook(path):
77
with tempfile.NamedTemporaryFile(suffix=".ipynb") as fout:
88
print(fout.name)
99
args = ["jupyter", "nbconvert", "--to", "notebook", "--execute",
10-
"--ExecutePreprocessor.timeout=10000",
10+
"--ExecutePreprocessor.timeout=-1",
11+
"--ExecutePreprocessor.raise_on_iopub_timeout=False",
1112
"--output", fout.name, path]
1213
subprocess.check_call(args)
1314

0 commit comments

Comments
 (0)