Accept any port in test_get_webui in test_webui.py (#6804)

This commit is contained in:
Mitchell Stern
2020-01-15 21:16:36 -08:00
committed by Edward Oakes
parent fb8e3615d5
commit 05674c219f
+1 -1
View File
@@ -15,7 +15,7 @@ def test_get_webui(shutdown_only):
webui_url = addresses["webui_url"]
assert ray.get_webui_url() == webui_url
assert re.match(r"^(localhost|\d+\.\d+\.\d+\.\d+):8265$", webui_url)
assert re.match(r"^(localhost|\d+\.\d+\.\d+\.\d+):\d+$", webui_url)
start_time = time.time()
while True: