From 75568f856c240a814d5d48210b98dcaa9c09ee59 Mon Sep 17 00:00:00 2001 From: architkulkarni Date: Sun, 14 Feb 2021 15:17:54 -0800 Subject: [PATCH] skip restart and multi restart test on win (#14084) --- python/ray/tests/test_actor_failures.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/ray/tests/test_actor_failures.py b/python/ray/tests/test_actor_failures.py index f26f87a0c..ff9c9fd45 100644 --- a/python/ray/tests/test_actor_failures.py +++ b/python/ray/tests/test_actor_failures.py @@ -73,6 +73,7 @@ def test_actor_eviction(ray_start_regular): assert num_success > 0 +@pytest.mark.skipif(sys.platform == "win32", reason="Very flaky on Windows.") def test_actor_restart(ray_init_with_task_retry_delay): """Test actor restart when actor process is killed.""" @@ -433,6 +434,7 @@ def test_caller_task_reconstruction(ray_start_regular): assert ray.get(RetryableTask.remote(remote_actor)) == 3 +@pytest.mark.skipif(sys.platform == "win32", reason="Very flaky on Windows.") # NOTE(hchen): we set object_timeout_milliseconds to 1s for # this test. Because if this value is too small, suprious task reconstruction # may happen and cause the test fauilure. If the value is too large, this test