[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 <wangli858794774@gmail.com>
This commit is contained in:
Li Wang
2025-12-09 11:48:13 +08:00
committed by GitHub
parent 2b819bb35b
commit 1c70f5c922

View File

@@ -151,6 +151,8 @@ def test_eagle_correctness(
assert matches > int(0.66 * len(ref_outputs)) 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( def test_suffix_correctness(
test_prompts: list[list[dict[str, Any]]], test_prompts: list[list[dict[str, Any]]],
sampling_config: SamplingParams, sampling_config: SamplingParams,
@@ -187,6 +189,8 @@ def test_suffix_correctness(
assert matches > int(0.66 * len(ref_outputs)) 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( def test_suffix_acceptance(
test_prompts: list[list[dict[str, Any]]], test_prompts: list[list[dict[str, Any]]],
sampling_config: SamplingParams, sampling_config: SamplingParams,