From 518876ef20aea762f612799268aee1e9d29b4b8e Mon Sep 17 00:00:00 2001 From: Ameer Haj Ali Date: Mon, 5 Oct 2020 17:07:00 -0700 Subject: [PATCH] Remove test_autoscaler_yaml from windows tests (#11197) Co-authored-by: Ameer Haj Ali Co-authored-by: Alex Wu Co-authored-by: Alex Wu Co-authored-by: Eric Liang --- python/ray/tests/test_autoscaler_yaml.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/python/ray/tests/test_autoscaler_yaml.py b/python/ray/tests/test_autoscaler_yaml.py index 0f4896324..5b9b99ee0 100644 --- a/python/ray/tests/test_autoscaler_yaml.py +++ b/python/ray/tests/test_autoscaler_yaml.py @@ -7,6 +7,7 @@ import urllib import yaml import copy from unittest.mock import MagicMock, Mock, patch +import pytest from ray.autoscaler._private.util import prepare_config, validate_config from ray.test_utils import recursive_fnmatch @@ -33,6 +34,9 @@ class AutoscalingConfigTest(unittest.TestCase): except Exception: self.fail("Config did not pass validation test!") + @pytest.mark.skipif( + sys.platform.startswith("win"), + reason="TODO(ameer): fails on Windows.") def testValidateDefaultConfigAWSMultiNodeTypes(self): aws_config_path = os.path.join( RAY_PATH, "autoscaler/aws/example-multi-node-type.yaml")