Skip to content

Commit

Permalink
Adjust timeouts in jupyter cli test (#8925)
Browse files Browse the repository at this point in the history
  • Loading branch information
fjetter authored Nov 6, 2024
1 parent 7d43e2f commit 559f546
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion distributed/tests/test_jupyter.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ async def test_jupyter_server():


@pytest.mark.slow
def test_jupyter_cli(loop):
def test_jupyter_cli(loop, requires_default_ports):
port = open_port()
with popen(
[
Expand All @@ -56,6 +56,8 @@ def test_jupyter_cli(loop):
"--host",
f"127.0.0.1:{port}",
],
terminate_timeout=120,
kill_timeout=60,
):
with Client(f"127.0.0.1:{port}", loop=loop):
response = requests.get("http://127.0.0.1:8787/jupyter/api/status")
Expand Down

0 comments on commit 559f546

Please sign in to comment.