mirror of
https://github.com/vale981/ray
synced 2025-03-06 02:21:39 -05:00
[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:
parent
aee008ab49
commit
1533976b82
1 changed files with 7 additions and 1 deletions
|
@ -7,7 +7,13 @@ load("//bazel:python.bzl", "py_test_module_list")
|
||||||
|
|
||||||
SRCS = glob(["**/conftest.py"])
|
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(
|
py_test_module_list(
|
||||||
files = glob(["tests/test_*.py", "examples/**/*.py"], exclude=LARGE_TESTS),
|
files = glob(["tests/test_*.py", "examples/**/*.py"], exclude=LARGE_TESTS),
|
||||||
|
|
Loading…
Add table
Reference in a new issue