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 a50113a commit 3307562Copy full SHA for 3307562
.github/workflows/test.yml
@@ -109,8 +109,8 @@ jobs:
109
110
# Check if tests functionally passed (look for PASSED status)
111
cat test_output.txt
112
- passed_count=$(grep -o "PASSED" test_output.txt | wc -l)
113
- failed_count=$(grep -o "FAILED" test_output.txt | wc -l)
+ passed_count=$(grep "PASSED" test_output.txt | grep -v "DEBUG\|INFO" | wc -l)
+ failed_count=$(grep "FAILED" test_output.txt | grep -v "DEBUG\|INFO\|ERROR" | wc -l)
114
115
echo "Test Results Summary:"
116
echo "- Passed: $passed_count"
0 commit comments