Fix more Windows issues (#9011)

Co-authored-by: Mehrdad <noreply@github.com>
This commit is contained in:
mehrdadn
2020-06-19 18:51:45 -07:00
committed by GitHub
co-authored by Mehrdad
parent f8d49d69c1
commit 981f67bfb0
11 changed files with 61 additions and 59 deletions
+2 -2
View File
@@ -182,13 +182,13 @@ def call_ray_start(request):
# Disconnect from the Ray cluster.
ray.shutdown()
# Kill the Ray cluster.
subprocess.check_output(["ray", "stop"])
subprocess.check_call(["ray", "stop"])
@pytest.fixture
def call_ray_stop_only():
yield
subprocess.check_output(["ray", "stop"])
subprocess.check_call(["ray", "stop"])
@pytest.fixture()