We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09ba565 commit 63ee7acCopy full SHA for 63ee7ac
notebook/tests/launchnotebook.py
@@ -53,6 +53,9 @@ def wait_until_alive(cls):
53
for _ in range(int(MAX_WAITTIME/POLL_INTERVAL)):
54
try:
55
cls.fetch_url(url)
56
+ except ModuleNotFoundError as error:
57
+ # Errors that should be immediately thrown back to caller
58
+ raise error
59
except Exception as e:
60
if not cls.notebook_thread.is_alive():
61
raise RuntimeError("The notebook server failed to start") from e
0 commit comments