From 05a62a6ffbe042a4200a1fdce8d8fc40de1caa39 Mon Sep 17 00:00:00 2001 From: ehhuang Date: Wed, 8 Oct 2025 15:12:13 -0700 Subject: [PATCH] chore: print integration tests command (#3747) # What does this PR do? ## Test Plan image --- .github/actions/run-and-record-tests/action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/actions/run-and-record-tests/action.yml b/.github/actions/run-and-record-tests/action.yml index a3eb31d9f..d240381c5 100644 --- a/.github/actions/run-and-record-tests/action.yml +++ b/.github/actions/run-and-record-tests/action.yml @@ -54,6 +54,10 @@ runs: SCRIPT_ARGS="$SCRIPT_ARGS --pattern ${{ inputs.pattern }}" fi + echo "=== Running command ===" + echo "uv run --no-sync ./scripts/integration-tests.sh $SCRIPT_ARGS" + echo "" + uv run --no-sync ./scripts/integration-tests.sh $SCRIPT_ARGS | tee pytest-${{ inputs.inference-mode }}.log