-
Notifications
You must be signed in to change notification settings - Fork 848
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f7386d5
commit 7c417cf
Showing
3 changed files
with
14 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
from testbook import testbook # type: ignore[import] | ||
from utils_for_tests import iterate_notebooks | ||
|
||
TIMEOUT: int = 60 * 3 # 3 minutes | ||
|
||
|
||
def test_notebooks() -> None: | ||
for notebook_path in iterate_notebooks(): | ||
with testbook(notebook_path, execute=True, timeout=TIMEOUT): | ||
pass # we simply wish it to run without errors |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters