Skip to content

Commit f9e7ad5

Browse files
authored
[Bugfix][CI] Fix Distributed Tests (4 GPUs) async_sched+ray test (#27195)
Signed-off-by: NickLucche <[email protected]>
1 parent 4d0f266 commit f9e7ad5

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/v1/distributed/test_async_llm_dp.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,9 @@ async def generate(
7878
async def test_load(
7979
output_kind: RequestOutputKind, data_parallel_backend: str, async_scheduling: bool
8080
):
81+
if async_scheduling and data_parallel_backend == "ray":
82+
# TODO(NickLucche) Re-enable when async scheduling is supported
83+
pytest.skip("Async scheduling is not supported with ray")
8184
stats_loggers = {}
8285

8386
@dataclass

0 commit comments

Comments
 (0)