From 856865008e1a8ffce393901c0245df265b5dfc3f Mon Sep 17 00:00:00 2001 From: Robert Shaw <114415538+robertgshaw2-redhat@users.noreply.github.com> Date: Wed, 14 May 2025 16:49:56 -0400 Subject: [PATCH] [CI] Disable Failing Tests (#18165) --- tests/spec_decode/e2e/test_eagle_correctness.py | 2 ++ tests/v1/engine/test_engine_core_client.py | 2 ++ 2 files changed, 4 insertions(+) diff --git a/tests/spec_decode/e2e/test_eagle_correctness.py b/tests/spec_decode/e2e/test_eagle_correctness.py index eee535a146f45..2814bb6d37738 100644 --- a/tests/spec_decode/e2e/test_eagle_correctness.py +++ b/tests/spec_decode/e2e/test_eagle_correctness.py @@ -178,6 +178,8 @@ def test_eagle_e2e_greedy_correctness_cuda_graph( batch_size, output_len, seed) +# TRACKING: https://github.com/vllm-project/vllm/issues/18166 +@pytest.mark.skip(reason="RE-ENABLE: Failing on main.") @pytest.mark.parametrize( "common_llm_kwargs", [{ diff --git a/tests/v1/engine/test_engine_core_client.py b/tests/v1/engine/test_engine_core_client.py index 452fe1e37e2cd..671d74b83b850 100644 --- a/tests/v1/engine/test_engine_core_client.py +++ b/tests/v1/engine/test_engine_core_client.py @@ -256,6 +256,8 @@ async def test_engine_core_client_asyncio(monkeypatch: pytest.MonkeyPatch): client.shutdown() +# TRACKING: https://github.com/vllm-project/vllm/issues/18167 +@pytest.mark.skip(reason="RE-ENABLE: this test is failing on main.") @pytest.mark.parametrize( "multiprocessing_mode,publisher_config", [(True, "tcp"), (False, "inproc")],