From 496dd297e5d5d78b451520088636c86f45ac21af Mon Sep 17 00:00:00 2001 From: architkulkarni Date: Mon, 15 Feb 2021 10:17:33 -0800 Subject: [PATCH] skip test_basic_reconstruction_actor_task on win (#14110) --- python/ray/tests/test_reconstruction.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/ray/tests/test_reconstruction.py b/python/ray/tests/test_reconstruction.py index 1589f77d8..bad48419f 100644 --- a/python/ray/tests/test_reconstruction.py +++ b/python/ray/tests/test_reconstruction.py @@ -220,6 +220,7 @@ def test_basic_reconstruction_put(ray_start_cluster, reconstruction_enabled): pass +@pytest.mark.skipif(sys.platform == "win32", reason="Very flaky on Windows.") @pytest.mark.parametrize("reconstruction_enabled", [False, True]) def test_basic_reconstruction_actor_task(ray_start_cluster, reconstruction_enabled):