Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions distributed/tests/test_asyncprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ async def test_simple():
t1 = time()
await proc.join(timeout=30)
dt = time() - t1
assert dt <= 1.0
assert dt <= 10
assert not proc.is_alive()
assert proc.pid is not None
assert proc.exitcode == 0
Expand All @@ -105,7 +105,7 @@ async def test_simple():
t1 = time()
await proc.join()
dt = time() - t1
assert dt <= 0.6
assert dt <= 2

del proc

Expand Down Expand Up @@ -140,7 +140,7 @@ async def test_simple():
await asyncio.sleep(0.01)
gc.collect()
dt = time() - t1
assert dt < 2.0
assert dt < 5.0


@gen_test()
Expand Down