Skip to content

Commit

Permalink
[core] re-enable tests_events_with_crash (ray-project#50360)
Browse files Browse the repository at this point in the history
but put it as all core tests

Signed-off-by: Lonnie Liu <lonnie@anyscale.com>
  • Loading branch information
aslonnie authored and xsuler committed Mar 4, 2025
1 parent 8876a21 commit dafd760
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 19 deletions.
1 change: 0 additions & 1 deletion .buildkite/core.rayci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@ steps:
- python
- workflow
- oss
- skip-on-premerge
instance_type: medium
parallelism: 2
commands:
Expand Down
19 changes: 1 addition & 18 deletions python/ray/workflow/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,6 @@ LARGE_TESTS = [
LARGE_ALL_CORE_TESTS = [
"tests/test_http_events_2.py",
"tests/test_events.py",
]

# Tests that are failing and need to be fixed.
# Tagging these tests are "manual" so they are not run by default.
FAILING_TESTS = [
"tests/test_events_with_crash.py",
]

Expand All @@ -45,7 +40,7 @@ py_test_module_list(
"tests/test_*.py",
"examples/**/*.py",
],
exclude = LARGE_TESTS + LARGE_ALL_CORE_TESTS + FAILING_TESTS,
exclude = LARGE_TESTS + LARGE_ALL_CORE_TESTS,
),
tags = [
"exclusive",
Expand All @@ -54,18 +49,6 @@ py_test_module_list(
deps = ["//:ray_lib"],
)

py_test_module_list(
size = "medium",
extra_srcs = SRCS,
files = FAILING_TESTS,
tags = [
"exclusive",
"manual",
"team:core",
],
deps = ["//:ray_lib"],
)

py_test_module_list(
size = "large",
extra_srcs = SRCS,
Expand Down

0 comments on commit dafd760

Please sign in to comment.