From a78c6ba7c88a7bb42b38410f9dcfa5b342b95b57 Mon Sep 17 00:00:00 2001 From: "Kevin H. Luu" Date: Thu, 10 Oct 2024 15:45:09 -0700 Subject: [PATCH] [ci/build] Add placeholder command for custom models test (#9262) --- .buildkite/test-pipeline.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.buildkite/test-pipeline.yaml b/.buildkite/test-pipeline.yaml index ae8e03a2..4c2fe41c 100644 --- a/.buildkite/test-pipeline.yaml +++ b/.buildkite/test-pipeline.yaml @@ -347,10 +347,11 @@ steps: - pytest -v -s models/encoder_decoder/language - pytest -v -s models/encoder_decoder/vision_language +# This test is used only in PR development phase to test individual models and should never run on main - label: Custom Models Test - #mirror_hardwares: [amd] optional: true commands: + - echo 'Testing custom models...' # PR authors can temporarily add commands below to test individual models # 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*