Skip to content

Commit 03a70ea

Browse files
Re-enable the AMD Testing for the passing tests. (#15586)
Signed-off-by: Alexei V. Ivanov <[email protected]>
1 parent 45b1ff7 commit 03a70ea

File tree

2 files changed

+26
-9
lines changed

2 files changed

+26
-9
lines changed

.buildkite/run-amd-test.sh

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,19 +105,33 @@ fi
105105
if [[ $commands == *" entrypoints/openai "* ]]; then
106106
commands=${commands//" entrypoints/openai "/" entrypoints/openai \
107107
--ignore=entrypoints/openai/test_audio.py \
108-
--ignore=entrypoints/openai/test_chat.py \
109108
--ignore=entrypoints/openai/test_shutdown.py \
110109
--ignore=entrypoints/openai/test_completion.py \
111110
--ignore=entrypoints/openai/test_sleep.py \
112111
--ignore=entrypoints/openai/test_models.py \
112+
--ignore=entrypoints/openai/test_lora_adapters.py \
113+
--ignore=entrypoints/openai/test_return_tokens_as_ids.py \
114+
--ignore=entrypoints/openai/test_root_path.py \
115+
--ignore=entrypoints/openai/test_tokenization.py \
113116
--ignore=entrypoints/openai/test_prompt_validation.py "}
114117
fi
115118

116119
#ignore certain Entrypoints/llm tests
117-
if [[ $commands == *" && pytest -v -s entrypoints/llm/test_guided_generate.py"* ]]; then
118-
commands=${commands//" && pytest -v -s entrypoints/llm/test_guided_generate.py"/" "}
120+
if [[ $commands == *" entrypoints/llm "* ]]; then
121+
commands=${commands//" entrypoints/llm "/" entrypoints/llm \
122+
--ignore=entrypoints/llm/test_chat.py \
123+
--ignore=entrypoints/llm/test_accuracy.py \
124+
--ignore=entrypoints/llm/test_init.py \
125+
--ignore=entrypoints/llm/test_generate_multiple_loras.py \
126+
--ignore=entrypoints/llm/test_prompt_validation.py "}
119127
fi
120128

129+
#Obsolete currently
130+
##ignore certain Entrypoints/llm tests
131+
#if [[ $commands == *" && pytest -v -s entrypoints/llm/test_guided_generate.py"* ]]; then
132+
# commands=${commands//" && pytest -v -s entrypoints/llm/test_guided_generate.py"/" "}
133+
#fi
134+
121135
# --ignore=entrypoints/openai/test_encoder_decoder.py \
122136
# --ignore=entrypoints/openai/test_embedding.py \
123137
# --ignore=entrypoints/openai/test_oot_registration.py

.buildkite/test-pipeline.yaml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ steps:
104104
- label: Entrypoints Test # 40min
105105
working_dir: "/vllm-workspace/tests"
106106
fast_check: true
107-
mirror_hardwares: [amd]
107+
#mirror_hardwares: [amd]
108108
source_file_dependencies:
109109
- vllm/
110110
- tests/entrypoints/llm
@@ -155,6 +155,7 @@ steps:
155155
- popd
156156

157157
- label: Metrics, Tracing Test # 10min
158+
mirror_hardwares: [amd]
158159
num_gpus: 2
159160
source_file_dependencies:
160161
- vllm/
@@ -173,7 +174,7 @@ steps:
173174
##### 1 GPU test #####
174175

175176
- label: Regression Test # 5min
176-
mirror_hardwares: [amd]
177+
#mirror_hardwares: [amd]
177178
source_file_dependencies:
178179
- vllm/
179180
- tests/test_regression
@@ -284,7 +285,7 @@ steps:
284285
- pytest -v -s spec_decode/e2e/test_eagle_correctness.py
285286

286287
- label: LoRA Test %N # 15min each
287-
mirror_hardwares: [amd]
288+
#mirror_hardwares: [amd]
288289
source_file_dependencies:
289290
- vllm/lora
290291
- tests/lora
@@ -310,7 +311,7 @@ steps:
310311
- pytest -v -s compile/test_full_graph.py
311312

312313
- label: Kernels Test %N # 1h each
313-
mirror_hardwares: [amd]
314+
# mirror_hardwares: [amd]
314315
source_file_dependencies:
315316
- csrc/
316317
- vllm/attention
@@ -320,7 +321,7 @@ steps:
320321
parallelism: 4
321322

322323
- label: Tensorizer Test # 11min
323-
mirror_hardwares: [amd]
324+
# mirror_hardwares: [amd]
324325
soft_fail: true
325326
source_file_dependencies:
326327
- vllm/model_executor/model_loader
@@ -371,7 +372,7 @@ steps:
371372

372373
- label: OpenAI-Compatible Tool Use # 20 min
373374
fast_check: false
374-
mirror_hardwares: [ amd ]
375+
#mirror_hardwares: [ amd ]
375376
source_file_dependencies:
376377
- vllm/
377378
- tests/tool_use
@@ -463,6 +464,7 @@ steps:
463464

464465
# This test is used only in PR development phase to test individual models and should never run on main
465466
- label: Custom Models Test
467+
mirror_hardwares: [amd]
466468
optional: true
467469
commands:
468470
- echo 'Testing custom models...'
@@ -474,6 +476,7 @@ steps:
474476
##### multi gpus test #####
475477

476478
- label: Distributed Comm Ops Test # 7min
479+
mirror_hardwares: [amd]
477480
working_dir: "/vllm-workspace/tests"
478481
num_gpus: 2
479482
source_file_dependencies:

0 commit comments

Comments
 (0)