Unverified Commit 74303896 authored by Nicolò Lucchesi's avatar Nicolò Lucchesi Committed by GitHub
Browse files

[Bugfix][CI] Skip flaky `test_eagle` test (#38566)


Signed-off-by: default avatarNickLucche <nlucches@redhat.com>
parent 202f147c
......@@ -23,9 +23,16 @@ else:
@pytest.mark.asyncio
@pytest.mark.parametrize("attn_backend", ATTN_BACKENDS)
@pytest.mark.xfail(
not current_platform.is_rocm(),
reason="EAGLE + DP > 1 produces wrong outputs when async spec decode "
"correction is active. Root cause under investigation. "
"See: https://github.com/vllm-project/vllm/issues/31913",
strict=False,
)
@pytest.mark.xfail(
current_platform.is_rocm(),
reason="Test may fail on ROCm until batch invariance is enabled."
reason="Test may fail on ROCm until batch invariance is enabled. "
"See: https://github.com/vllm-project/vllm/issues/27433",
strict=False,
)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment