From 1c70f5c922c5571d8b012093efd9fccc9ef0312d Mon Sep 17 00:00:00 2001 From: Li Wang Date: Tue, 9 Dec 2025 11:48:13 +0800 Subject: [PATCH] [CI] Skip `test_suffix_correctness` (#4820) ### What this PR does / why we need it? Currently, suffix decoding has known correctness issue see https://github.com/vllm-project/vllm-ascend/actions/runs/20033509824/job/57457565620?pr=4781" Signed-off-by: wangli --- tests/e2e/singlecard/spec_decode_v1/test_v1_spec_decode.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/e2e/singlecard/spec_decode_v1/test_v1_spec_decode.py b/tests/e2e/singlecard/spec_decode_v1/test_v1_spec_decode.py index d8c0fabe..3d7c5453 100644 --- a/tests/e2e/singlecard/spec_decode_v1/test_v1_spec_decode.py +++ b/tests/e2e/singlecard/spec_decode_v1/test_v1_spec_decode.py @@ -151,6 +151,8 @@ def test_eagle_correctness( assert matches > int(0.66 * len(ref_outputs)) +@pytest.mark.skip( + "Fix me, suffix decoding now exists some known accuracy issue, skip it") def test_suffix_correctness( test_prompts: list[list[dict[str, Any]]], sampling_config: SamplingParams, @@ -187,6 +189,8 @@ def test_suffix_correctness( assert matches > int(0.66 * len(ref_outputs)) +@pytest.mark.skip( + "Fix me, suffix decoding now exists some functional issue, skip it") def test_suffix_acceptance( test_prompts: list[list[dict[str, Any]]], sampling_config: SamplingParams,