From e23d99baa4bbf7a51d419ee69136905afeed2122 Mon Sep 17 00:00:00 2001 From: tzhouam Date: Mon, 30 Mar 2026 07:34:45 +0000 Subject: [PATCH 1/2] [Test] Add Qwen3-TTS Base E2E Test to CI pipeline Signed-off-by: tzhouam --- .buildkite/test-ready.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/.buildkite/test-ready.yml b/.buildkite/test-ready.yml index 2f7441ad867..f27fd2ed3ef 100644 --- a/.buildkite/test-ready.yml +++ b/.buildkite/test-ready.yml @@ -322,6 +322,31 @@ steps: volumes: - "/fsx/hf_cache:/fsx/hf_cache" + - label: "Qwen3-TTS Base E2E Test (ModelRunner V2)" + depends_on: upload-ready-pipeline + commands: + - | + timeout 20m bash -c ' + export VLLM_LOGGING_LEVEL=DEBUG + export VLLM_WORKER_MULTIPROC_METHOD=spawn + export VLLM_ALLOW_LONG_MAX_MODEL_LEN="1" + export VLLM_OMNI_USE_V2_RUNNER="1" + pytest -s -v tests/e2e/online_serving/test_qwen3_tts_base.py -m "core_model" --run-level "core_model" + ' + agents: + queue: "gpu_1_queue" + plugins: + - docker#v5.2.0: + image: public.ecr.aws/q9t5s3a7/vllm-ci-test-repo:$BUILDKITE_COMMIT + always-pull: true + propagate-environment: true + shm-size: "8gb" + environment: + - "HF_HOME=/fsx/hf_cache" + - "HF_TOKEN" + volumes: + - "/fsx/hf_cache:/fsx/hf_cache" + - label: "Voxtral-TTS E2E Test" timeout_in_minutes: 20 depends_on: upload-ready-pipeline From dc11ed948057d4aca3ec17e29b7fc79fbe400e7c Mon Sep 17 00:00:00 2001 From: tzhouam Date: Mon, 30 Mar 2026 07:36:29 +0000 Subject: [PATCH 2/2] add softfail Signed-off-by: tzhouam --- .buildkite/test-ready.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.buildkite/test-ready.yml b/.buildkite/test-ready.yml index f27fd2ed3ef..bc633e76ea9 100644 --- a/.buildkite/test-ready.yml +++ b/.buildkite/test-ready.yml @@ -324,6 +324,8 @@ steps: - label: "Qwen3-TTS Base E2E Test (ModelRunner V2)" depends_on: upload-ready-pipeline + soft_fail: + - exit_status: 1 commands: - | timeout 20m bash -c '