From f4e5561ef7885f26f3c4f5254cf503cde7f46144 Mon Sep 17 00:00:00 2001 From: mehrdadn Date: Sun, 28 Jun 2020 23:51:01 -0700 Subject: [PATCH] Fix build error (#9185) Co-authored-by: Mehrdad --- python/ray/tests/BUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/ray/tests/BUILD b/python/ray/tests/BUILD index 7ebb8a935..87553f29a 100644 --- a/python/ray/tests/BUILD +++ b/python/ray/tests/BUILD @@ -201,7 +201,8 @@ py_test( py_test( name = "test_autoscaler_yaml", size = "small", - srcs = SRCS + ["test_autoscaler_yaml.py", "additional_property.yaml"], + srcs = SRCS + ["test_autoscaler_yaml.py"], + data = ["additional_property.yaml"], deps = ["//:ray_lib"], )