From 332c94b6f4f2e28a254942ed9c7b04bf6346ca4c Mon Sep 17 00:00:00 2001 From: Isotr0py <2037008807@qq.com> Date: Sun, 13 Jul 2025 11:48:55 +0800 Subject: [PATCH 1/2] add transformers nightly test Signed-off-by: Isotr0py <2037008807@qq.com> --- .buildkite/test-pipeline.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.buildkite/test-pipeline.yaml b/.buildkite/test-pipeline.yaml index af0bf2ae364f..3a876b990858 100644 --- a/.buildkite/test-pipeline.yaml +++ b/.buildkite/test-pipeline.yaml @@ -630,6 +630,17 @@ steps: # e.g. pytest -v -s models/encoder_decoder/vision_language/test_mllama.py # *To avoid merge conflicts, remember to REMOVE (not just comment out) them before merging the PR* +- label: Transformers Nightly Models Test + working_dir: "/vllm-workspace/" + optional: true + commands: + - pip install --upgrade git+https://github.com/huggingface/transformers + - pytest -s -v tests/models/multimodal/processing/ + - pytest -s -v tests/models/multimodal/test_mapping.py + - python3 examples/offline_inference/basic/chat.py + - python3 examples/offline_inference/audio_language.py --model-type whisper + - python3 examples/offline_inference/vision_language.py --model-type qwen2_5_vl + ##### 1 GPU test ##### ##### multi gpus test ##### From 11e12efd832ca327604e6a5205c2d3111d346484 Mon Sep 17 00:00:00 2001 From: Isotr0py <2037008807@qq.com> Date: Mon, 14 Jul 2025 20:49:40 +0800 Subject: [PATCH 2/2] include test_initialization.py Signed-off-by: Isotr0py <2037008807@qq.com> --- .buildkite/test-pipeline.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.buildkite/test-pipeline.yaml b/.buildkite/test-pipeline.yaml index 3a876b990858..4440187c36e9 100644 --- a/.buildkite/test-pipeline.yaml +++ b/.buildkite/test-pipeline.yaml @@ -635,8 +635,9 @@ steps: optional: true commands: - pip install --upgrade git+https://github.com/huggingface/transformers - - pytest -s -v tests/models/multimodal/processing/ - - pytest -s -v tests/models/multimodal/test_mapping.py + - pytest -v -s models/test_initialization.py + - pytest -v -s tests/models/multimodal/processing/ + - pytest -v -s tests/models/multimodal/test_mapping.py - python3 examples/offline_inference/basic/chat.py - python3 examples/offline_inference/audio_language.py --model-type whisper - python3 examples/offline_inference/vision_language.py --model-type qwen2_5_vl