Adjust sleep times (#2080)

* Adjust sleep times

* Update test_start_container.py

* Update test_healthcheck.py

* Update pluto_check.py
This commit is contained in:
Ayaz Salikhov
2024-01-17 02:11:44 +04:00
committed by GitHub
parent 86dc0f274f
commit d57bf9590d
3 changed files with 17 additions and 23 deletions

View File

@@ -24,7 +24,7 @@ def check_pluto_proxy(
ports={"8888/tcp": host_port},
)
# Give the server a bit of time to start
time.sleep(3)
time.sleep(2)
resp = http_client.get(f"http://localhost:{host_port}/pluto?token={token}")
resp.raise_for_status()
assert "Pluto.jl notebooks" in resp.text, "Pluto.jl text not found in /pluto page"