Skip to content

Commit

Permalink
increased timeout for notebook tes executions
Browse files Browse the repository at this point in the history
  • Loading branch information
rikigigi committed Jul 18, 2022
1 parent 3abbdee commit 21be532
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_notebook.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ def tb(filepath_tests):
execute=False
old_path=os.getcwd()
os.chdir(filepath_tests)
with testbook(filepath_tests + '/../notebooks/calc_inspector.ipynb', execute=execute) as tb:
with testbook(filepath_tests + '/../notebooks/calc_inspector.ipynb', execute=execute, timeout=240) as tb:
yield tb
os.chdir(old_path) #note that this is executed somewhere in the future
os.chdir(old_path) #note that this is executed somewhen in the future

def test_density(tb,num_regression):
import pyanalisi as pa
Expand Down

0 comments on commit 21be532

Please sign in to comment.