From 1533976b820e8aa718391d27b617e77ec9b89114 Mon Sep 17 00:00:00 2001 From: Yi Cheng <74173148+iycheng@users.noreply.github.com> Date: Mon, 8 Aug 2022 20:38:37 +0000 Subject: [PATCH] [deflakey] test_error_handling.py in workflow (#27630) Signed-off-by: Yi Cheng ## Why are these changes needed? This test timeout. Move it to large. ``` WARNING: //python/ray/workflow:tests/test_error_handling: Test execution time (288.7s excluding execution overhead) outside of range for MODERATE tests. Consider setting timeout="long" or size="large". ``` --- python/ray/workflow/BUILD | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/python/ray/workflow/BUILD b/python/ray/workflow/BUILD index 79e2f436e..ad10ae92e 100644 --- a/python/ray/workflow/BUILD +++ b/python/ray/workflow/BUILD @@ -7,7 +7,13 @@ load("//bazel:python.bzl", "py_test_module_list") SRCS = glob(["**/conftest.py"]) -LARGE_TESTS = ["tests/test_recovery.py", "tests/test_basic_workflows_2.py", "tests/test_metadata.py", "tests/test_events.py"] +LARGE_TESTS = [ + "tests/test_error_handling.py", + "tests/test_recovery.py", + "tests/test_basic_workflows_2.py", + "tests/test_metadata.py", + "tests/test_events.py" +] py_test_module_list( files = glob(["tests/test_*.py", "examples/**/*.py"], exclude=LARGE_TESTS),