Revert "Try to enable dashboard (again) (#6069)" (#6159)

This reverts commit 4044af8520.
This commit is contained in:
Philipp Moritz
2019-11-13 12:32:12 -08:00
committed by Eric Liang
parent b924299833
commit f24d96ec4f
9 changed files with 35 additions and 39 deletions
+2 -4
View File
@@ -42,7 +42,7 @@ def test_worker_stats(ray_start_regular):
# Check that the rest of the processes are workers, 1 for each CPU.
print(reply)
assert len(reply.workers_stats) >= num_cpus + 1
assert len(reply.workers_stats) == num_cpus + 1
views = [view.view_name for view in reply.view_data]
assert "redis_latency" in views
assert "local_available_resource" in views
@@ -53,7 +53,5 @@ def test_worker_stats(ray_start_regular):
if p.info["pid"] in pids
]
for process in processes:
# TODO(ekl): what is with travis/mi when running in Travis?
assert ("python" in process or "ray" in process
or "travis/mi" in process)
assert "python" in process or "ray" in process
break