From 6b07f43f61ff7052c66f605881a8060741486d58 Mon Sep 17 00:00:00 2001 From: Eric Huang Date: Wed, 8 Oct 2025 14:43:08 -0700 Subject: [PATCH] chore: print integration tests command # What does this PR do? ## Test Plan --- .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