From a9e4ce95c9b9db72e5fd8847a49ffb3cabce7ab9 Mon Sep 17 00:00:00 2001 From: Lonnie Liu <95255098+aslonnie@users.noreply.github.com> Date: Thu, 24 Aug 2023 10:51:38 -0700 Subject: [PATCH] Fix test coverage lint error (#38832) the new test file `test_streaming_generator_3.py` was added without adding it in the bazel test declaration list. Signed-off-by: Lonnie Liu --- python/ray/tests/BUILD | 1 + 1 file changed, 1 insertion(+) diff --git a/python/ray/tests/BUILD b/python/ray/tests/BUILD index 182d0fc07a8e5..33cea03e9dce7 100644 --- a/python/ray/tests/BUILD +++ b/python/ray/tests/BUILD @@ -177,6 +177,7 @@ py_test_module_list( "test_draining.py", "test_streaming_generator.py", "test_streaming_generator_2.py", + "test_streaming_generator_3.py", "test_scheduling_performance.py", ], size = "medium",