From 852e2a6e5a23fc15fb4e4e604405026d450e170c Mon Sep 17 00:00:00 2001 From: Cindy Zhang Date: Tue, 29 Oct 2024 06:25:52 -0700 Subject: [PATCH] [serve] move deployment scheduler test (#48303) ## Why are these changes needed? Move `test_deployment_scheduler.py` from small to medium. Signed-off-by: Cindy Zhang --- python/ray/serve/tests/BUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ray/serve/tests/BUILD b/python/ray/serve/tests/BUILD index d38137363b48..cf0107f757a6 100644 --- a/python/ray/serve/tests/BUILD +++ b/python/ray/serve/tests/BUILD @@ -24,7 +24,6 @@ py_test_module_list( "test_constructor_failure.py", "test_controller.py", "test_deployment_graph_handle_serde.py", - "test_deployment_scheduler.py", "test_deployment_version.py", "test_expected_versions.py", "test_max_queued_requests.py", @@ -54,6 +53,7 @@ py_test_module_list( "test_cancellation.py", "test_cluster.py", "test_controller_recovery.py", + "test_deployment_scheduler.py", "test_failure.py", "test_grpc.py", "test_handle.py",