Skip to content

Commit

Permalink
increase timeout in test_quiet_process (#6857)
Browse files Browse the repository at this point in the history
  • Loading branch information
fjetter authored Aug 10, 2022
1 parent e38d3a9 commit 5b6c20a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion distributed/tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -7551,7 +7551,7 @@ def test_quiet_close_process(processes, tmp_path):
f.write(client_script % processes)

with popen([sys.executable, tmp_path / "script.py"], capture_output=True) as proc:
out, err = proc.communicate(timeout=10)
out, err = proc.communicate(timeout=60)

assert not out
assert not err
Expand Down

0 comments on commit 5b6c20a

Please sign in to comment.