From 8cbdc7eb941e8f3085920b57211ca45df5d71c10 Mon Sep 17 00:00:00 2001 From: Ryan Rock Date: Thu, 8 Jan 2026 03:00:24 -0600 Subject: [PATCH] [CI/Build] Enable test_kv_cache_events_dp for AMD (#31834) Signed-off-by: Ryan Rock --- tests/v1/engine/test_engine_core_client.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/v1/engine/test_engine_core_client.py b/tests/v1/engine/test_engine_core_client.py index 5067fc255..4b9c0e746 100644 --- a/tests/v1/engine/test_engine_core_client.py +++ b/tests/v1/engine/test_engine_core_client.py @@ -37,8 +37,11 @@ from vllm.v1.executor.abstract import Executor from ...distributed.conftest import MockSubscriber from ...utils import create_new_process_for_each_test -if not current_platform.is_cuda(): - pytest.skip(reason="V1 currently only supported on CUDA.", allow_module_level=True) +if not current_platform.is_cuda_alike(): + pytest.skip( + reason="V1 currently only supported on CUDA-alike platforms.", + allow_module_level=True, + ) MODEL_NAME = "meta-llama/Llama-3.2-1B-Instruct" TOKENIZER = AutoTokenizer.from_pretrained(MODEL_NAME)