Skip to content
Snippets Groups Projects
Commit 991618a8 authored by hagrid67's avatar hagrid67
Browse files

increase cell timeout from default 30s to 120s in run_all_notebooks.py

parent 4f6b3af2
No related branches found
No related tags found
No related merge requests found
......@@ -65,7 +65,8 @@ def main():
print("*****************************************************************")
with path('notebooks', entry) as file_in:
out, err = run_python(" -m jupyter nbconvert --execute --to notebook --inplace " + str(file_in))
out, err = run_python(" -m jupyter nbconvert --ExecutePreprocessor.timeout=120 " +
"--execute --to notebook --inplace " + str(file_in))
sys.stderr.write(err)
sys.stderr.flush()
sys.stdout.write(out)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment