Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .buildkite/test-ready.yml
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,33 @@ steps:
volumes:
- "/fsx/hf_cache:/fsx/hf_cache"

- label: "Qwen3-TTS Base E2E Test (ModelRunner V2)"
depends_on: upload-ready-pipeline
soft_fail:
- exit_status: 1
Comment on lines +344 to +345

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Keep ModelRunner V2 test blocking

Setting soft_fail for exit_status: 1 makes this new core_model CI step non-blocking: pytest uses exit code 1 for test failures, so regressions in tests/e2e/online_serving/test_qwen3_tts_base.py will only produce a warning and the ready pipeline can still pass. This undermines the purpose of adding the ModelRunner V2 E2E test as CI protection.

Useful? React with 👍 / 👎.

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
Expand Down
Loading