diff --git a/tests/test_kernel.py b/tests/test_kernel.py index 7fc4d44d2..5fc828435 100644 --- a/tests/test_kernel.py +++ b/tests/test_kernel.py @@ -203,7 +203,7 @@ def parent_target(): received = 0 while received < iterations: - msg = kc.get_iopub_msg(timeout=interval * 2) + msg = kc.get_iopub_msg(timeout=interval * 10) if msg["msg_type"] != "stream": continue content = msg["content"] @@ -235,7 +235,7 @@ async def async_task(): received = 0 while received < iterations: - msg = kc.get_iopub_msg(timeout=interval * 2) + msg = kc.get_iopub_msg(timeout=interval * 10) if msg["msg_type"] != "stream": continue content = msg["content"]