From 92963800f63c8fa7ec2aef0392a095a14cf1c155 Mon Sep 17 00:00:00 2001 From: Ian Rodney Date: Tue, 5 Jan 2021 16:48:32 -0800 Subject: [PATCH] [tests] Fix Autoscaler Test failure on Windows (#13211) * skip create_or_update tests * Update python/ray/tests/test_autoscaler.py Co-authored-by: Ameer Haj Ali Co-authored-by: Ameer Haj Ali --- python/ray/tests/test_autoscaler.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/ray/tests/test_autoscaler.py b/python/ray/tests/test_autoscaler.py index f859107e1..111db350f 100644 --- a/python/ray/tests/test_autoscaler.py +++ b/python/ray/tests/test_autoscaler.py @@ -545,6 +545,7 @@ class AutoscalingTest(unittest.TestCase): f"docker cp {docker_mount_prefix}/~/ray_bootstrap_config.yaml" runner.assert_has_call("1.2.3.4", pattern=pattern_to_assert) + @unittest.skipIf(sys.platform == "win32", "Failing on Windows.") def testDockerFileMountsRemoved(self): config = copy.deepcopy(SMALL_CLUSTER) config["file_mounts"] = {}