Skip to content

Commit b7dd46d

Browse files
committed
Longer exection time
1 parent 93ef747 commit b7dd46d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/notebooks/test_notebooks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def __init__(self, filename):
2222
def __call__(self, exporter=None, filename=None):
2323
raw_nb = nbconvert.exporters.Exporter().from_filename(self.filename)
2424
raw_nb[0].metadata.setdefault('kernelspec', {})['name'] = 'python'
25-
exec_nb = nbconvert.preprocessors.ExecutePreprocessor().preprocess(*raw_nb)
25+
exec_nb = nbconvert.preprocessors.ExecutePreprocessor(timeout=600).preprocess(*raw_nb)
2626

2727
if exporter is not None:
2828
out_nb = nbconvert.exporters.MarkdownExporter().from_notebook_node(*exec_nb)

0 commit comments

Comments
 (0)