Skip to content

Commit 852ef9a

Browse files
Fixed a flaky windows test (#1500)
1 parent e2e47f9 commit 852ef9a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_kernel.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ def parent_target():
203203

204204
received = 0
205205
while received < iterations:
206-
msg = kc.get_iopub_msg(timeout=interval * 2)
206+
msg = kc.get_iopub_msg(timeout=interval * 10)
207207
if msg["msg_type"] != "stream":
208208
continue
209209
content = msg["content"]
@@ -235,7 +235,7 @@ async def async_task():
235235

236236
received = 0
237237
while received < iterations:
238-
msg = kc.get_iopub_msg(timeout=interval * 2)
238+
msg = kc.get_iopub_msg(timeout=interval * 10)
239239
if msg["msg_type"] != "stream":
240240
continue
241241
content = msg["content"]

0 commit comments

Comments
 (0)