Fix more Windows tests (#9173)

This commit is contained in:
mehrdadn 2020-06-28 02:13:15 -07:00 committed by GitHub
parent 1dc018d0bb
commit 8f72a9fd1a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

@ -141,6 +141,7 @@ test_python() {
-python/ray/tests:test_object_manager
-python/ray/tests:test_projects
-python/ray/tests:test_queue # timeout
-python/ray/tests:test_ray_init # flaky
-python/ray/tests:test_reconstruction # UnreconstructableError
-python/ray/tests:test_stress
-python/ray/tests:test_stress_sharded

View file

@ -194,14 +194,14 @@ py_test(
py_test(
name = "test_autoscaler_aws",
size = "small",
srcs = ["aws/test_autoscaler_aws.py"],
srcs = SRCS + ["aws/test_autoscaler_aws.py"],
deps = ["//:ray_lib"],
)
py_test(
name = "test_autoscaler_yaml",
size = "small",
srcs = SRCS + ["test_autoscaler_yaml.py"],
srcs = SRCS + ["test_autoscaler_yaml.py", "additional_property.yaml"],
deps = ["//:ray_lib"],
)