From f948ab69458552b18925f82a8833c51d6f5b6f67 Mon Sep 17 00:00:00 2001 From: Vadim Gimpelson <156319763+vadiklyutiy@users.noreply.github.com> Date: Thu, 6 Nov 2025 05:22:13 +0400 Subject: [PATCH] [CI Failure] `nm-testing/Qwen2-0.5B-Instruct-FP8-SkipQKV` was removed from HF. Skip it in tests (#28170) Signed-off-by: Vadim Gimpelson --- tests/quantization/test_fp8.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/quantization/test_fp8.py b/tests/quantization/test_fp8.py index bb3572752..f02da2996 100644 --- a/tests/quantization/test_fp8.py +++ b/tests/quantization/test_fp8.py @@ -18,7 +18,12 @@ from vllm.platforms import current_platform MODELS = [ "neuralmagic/Meta-Llama-3-8B-Instruct-FP8-KV", - "nm-testing/Qwen2-0.5B-Instruct-FP8-SkipQKV", + # The checkpoint below was removed from the HF. + # TODO: add a small replacement checkpoint. + pytest.param( + "nm-testing/Qwen2-0.5B-Instruct-FP8-SkipQKV", + marks=pytest.mark.skip(reason="Checkpoint removed from HF."), + ), ]