Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
6f4b33f7
Unverified
Commit
6f4b33f7
authored
Feb 19, 2026
by
knarangN
Committed by
GitHub
Feb 19, 2026
Browse files
test: add vllm audio tests to nightly ci pipeline (#6392)
Signed-off-by:
Kavita Narang
<
knarang@nvidia.com
>
parent
4ba48b79
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
6 deletions
+34
-6
tests/serve/test_vllm.py
tests/serve/test_vllm.py
+34
-6
No files found.
tests/serve/test_vllm.py
View file @
6f4b33f7
...
@@ -512,15 +512,17 @@ vllm_configs = {
...
@@ -512,15 +512,17 @@ vllm_configs = {
)
)
],
],
),
),
# Audio multimodal tests for nightly CI pipeline
# These tests validate audio inference capabilities with Qwen2-Audio model
"multimodal_audio_agg"
:
VLLMConfig
(
"multimodal_audio_agg"
:
VLLMConfig
(
name
=
"multimodal_audio_agg"
,
name
=
"multimodal_audio_agg"
,
directory
=
"/workspace/
examples/multimodal"
,
directory
=
os
.
path
.
join
(
WORKSPACE_DIR
,
"
examples/multimodal"
)
,
script_name
=
"audio_agg.sh"
,
script_name
=
"audio_agg.sh"
,
marks
=
[
pytest
.
mark
.
gpu_2
,
pytest
.
mark
.
nightly
],
marks
=
[
pytest
.
mark
.
gpu_2
,
pytest
.
mark
.
nightly
],
model
=
"Qwen/Qwen2-Audio-7B-Instruct"
,
model
=
"Qwen/Qwen2-Audio-7B-Instruct"
,
delayed_start
=
0
,
delayed_start
=
6
0
,
# Audio models require longer loading time
script_args
=
[
"--model"
,
"Qwen/Qwen2-Audio-7B-Instruct"
],
script_args
=
[
"--model"
,
"Qwen/Qwen2-Audio-7B-Instruct"
],
timeout
=
5
00
,
timeout
=
6
00
,
# 10 minutes for audio processing overhead
request_payloads
=
[
request_payloads
=
[
chat_payload
(
chat_payload
(
[
[
...
@@ -533,10 +535,36 @@ vllm_configs = {
...
@@ -533,10 +535,36 @@ vllm_configs = {
},
},
],
],
repeat_count
=
1
,
repeat_count
=
1
,
expected_response
=
[
expected_response
=
[
"Hester"
,
"Pynne"
],
"The original content of this audio is:'yet these thoughts affected Hester Pynne less with hope than apprehension.'"
temperature
=
0.0
,
max_tokens
=
100
,
)
],
),
"multimodal_audio_disagg"
:
VLLMConfig
(
name
=
"multimodal_audio_disagg"
,
directory
=
os
.
path
.
join
(
WORKSPACE_DIR
,
"examples/multimodal"
),
script_name
=
"audio_disagg.sh"
,
marks
=
[
pytest
.
mark
.
gpu_2
,
pytest
.
mark
.
nightly
],
model
=
"Qwen/Qwen2-Audio-7B-Instruct"
,
delayed_start
=
60
,
# Audio models require longer loading time
script_args
=
[
"--model"
,
"Qwen/Qwen2-Audio-7B-Instruct"
],
timeout
=
600
,
# 10 minutes for audio processing overhead
request_payloads
=
[
chat_payload
(
[
{
"type"
:
"text"
,
"text"
:
"What is recited in the audio?"
},
{
"type"
:
"audio_url"
,
"audio_url"
:
{
"url"
:
"https://raw.githubusercontent.com/yuekaizhang/Triton-ASR-Client/main/datasets/mini_en/wav/1221-135766-0002.wav"
},
},
],
],
temperature
=
0.8
,
repeat_count
=
1
,
expected_response
=
[
"Hester"
,
"Pynne"
],
temperature
=
0.0
,
max_tokens
=
100
,
)
)
],
],
),
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment