[deflakey] test_error_handling.py in workflow (#27630)

Signed-off-by: Yi Cheng <chengyidna@gmail.com>

## 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".
```
This commit is contained in:
Yi Cheng 2022-08-08 20:38:37 +00:00 committed by GitHub
parent aee008ab49
commit 1533976b82
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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),