Skip to content

Commit

Permalink
test: increase tutorial test timeout (#1360)
Browse files Browse the repository at this point in the history
  • Loading branch information
janfb authored Jan 10, 2025
1 parent 0ab3a14 commit 0bb84d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/tutorials_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def test_tutorials(notebook_path):
"""Test that all notebooks in the tutorials directory can be executed."""
with open(notebook_path) as f:
nb = nbformat.read(f, as_version=4)
ep = ExecutePreprocessor(timeout=600, kernel_name='python3')
ep = ExecutePreprocessor(timeout=1200, kernel_name='python3')
print(f"Executing notebook {notebook_path}")
try:
ep.preprocess(nb, {'metadata': {'path': os.path.dirname(notebook_path)}})
Expand Down

0 comments on commit 0bb84d9

Please sign in to comment.