We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93ef747 commit b7dd46dCopy full SHA for b7dd46d
1 file changed
tests/notebooks/test_notebooks.py
@@ -22,7 +22,7 @@ def __init__(self, filename):
22
def __call__(self, exporter=None, filename=None):
23
raw_nb = nbconvert.exporters.Exporter().from_filename(self.filename)
24
raw_nb[0].metadata.setdefault('kernelspec', {})['name'] = 'python'
25
- exec_nb = nbconvert.preprocessors.ExecutePreprocessor().preprocess(*raw_nb)
+ exec_nb = nbconvert.preprocessors.ExecutePreprocessor(timeout=600).preprocess(*raw_nb)
26
27
if exporter is not None:
28
out_nb = nbconvert.exporters.MarkdownExporter().from_notebook_node(*exec_nb)
0 commit comments