diff --git a/scripts/test-template-aws.j2 b/scripts/test-template-aws.j2 index 3c7644b..528fe3b 100644 --- a/scripts/test-template-aws.j2 +++ b/scripts/test-template-aws.j2 @@ -106,7 +106,7 @@ steps: {% if step.label == "Benchmarks" %} mount-buildkite-agent: true {% endif %} - command: ["bash", "-c", "(command nvidia-smi || true) && export VLLM_LOGGING_LEVEL=DEBUG && export VLLM_ALLOW_DEPRECATED_BEAM_SEARCH=1 && cd {{ (step.working_dir or default_working_dir) | safe }} && {{ step.command or (step.commands | join(' && ')) | safe }}"] + command: ["bash", "-xc", "(command nvidia-smi || true) && export VLLM_LOGGING_LEVEL=DEBUG && export VLLM_ALLOW_DEPRECATED_BEAM_SEARCH=1 && cd {{ (step.working_dir or default_working_dir) | safe }} && {{ step.command or (step.commands | join(' && ')) | safe }}"] environment: - VLLM_USAGE_SOURCE=ci-test - HF_HOME={{ hf_home }} diff --git a/scripts/test-template-fastcheck.j2 b/scripts/test-template-fastcheck.j2 index 89760db..a72af1d 100644 --- a/scripts/test-template-fastcheck.j2 +++ b/scripts/test-template-fastcheck.j2 @@ -67,7 +67,7 @@ steps: {% if step.label == "Benchmarks" %} mount-buildkite-agent: true {% endif %} - command: ["bash", "-c", "(command nvidia-smi || true) && export VLLM_LOGGING_LEVEL=DEBUG && export VLLM_ALLOW_DEPRECATED_BEAM_SEARCH=1 && cd {{ (step.working_dir or default_working_dir) | safe }} && {{ step.command or (step.commands | join(' && ')) | safe }}"] + command: ["bash", "-xc", "(command nvidia-smi || true) && export VLLM_LOGGING_LEVEL=DEBUG && export VLLM_ALLOW_DEPRECATED_BEAM_SEARCH=1 && cd {{ (step.working_dir or default_working_dir) | safe }} && {{ step.command or (step.commands | join(' && ')) | safe }}"] environment: - VLLM_USAGE_SOURCE=ci-test - HF_HOME={{ hf_home }}