We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f977ed5 commit 259f8e4Copy full SHA for 259f8e4
.github/actions/run-testacc/action.yml
@@ -9,9 +9,11 @@ runs:
9
steps:
10
- name: Run tests
11
shell: bash
12
+ env:
13
+ TEST_PATTERN: ${{ inputs.test_pattern }}
14
run: |
15
set -o pipefail
- EXECUTE_TESTS=true make testacc TESTARGS='-run="${{ inputs.test_pattern }}"' 2>&1 | tee test_output.txt
16
+ EXECUTE_TESTS=true make testacc TESTARGS="-run=\"$TEST_PATTERN\"" 2>&1 | tee test_output.txt
17
if ! grep -q "=== RUN" test_output.txt; then
18
echo "ERROR: No tests matched the pattern. Please check the -run argument."
19
exit 1
0 commit comments