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 1e9e077 commit ace3775Copy full SHA for ace3775
distributed/tests/test_actor.py
@@ -466,7 +466,7 @@ def f(block, ps=None):
466
467
468
@pytest.mark.flaky(reruns=10, reruns_delay=5)
469
-@gen_cluster(client=True)
+@gen_cluster(client=True, timeout=10)
470
async def test_compute(c, s, a, b):
471
@dask.delayed
472
def f(n, counter):
@@ -485,10 +485,8 @@ def check(counter, blanks):
485
result = await c.compute(final, actors=counter)
486
assert result == 0 + 1 + 2 + 3 + 4
487
488
- start = time()
489
while a.data or b.data:
490
await asyncio.sleep(0.01)
491
- assert time() < start + 30
492
493
494
def test_compute_sync(client):
0 commit comments