We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae94b13 commit 646ed31Copy full SHA for 646ed31
1 file changed
.github/workflows/ci.yaml
@@ -63,11 +63,11 @@ jobs:
63
- name: Process test results
64
if: always()
65
run: |
66
- cat "${TEST_OUTPUT_FILE}"
67
echo "::group::Test Results Summary"
68
# Count passed and failed tests
69
if [[ -f "${TEST_OUTPUT_FILE}" ]]
70
then
+ cat "${TEST_OUTPUT_FILE}"
71
PASSED_TESTS=$(grep -c "^ok " "${TEST_OUTPUT_FILE}")
72
FAILED_TESTS=$(grep -c "^not ok " "${TEST_OUTPUT_FILE}")
73
SKIPPED_TESTS=$(grep -c "^ok .* # skip" "${TEST_OUTPUT_FILE}")
0 commit comments