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 b051aa3 commit c2bd183Copy full SHA for c2bd183
.github/workflows/sonarcloud.yml
@@ -158,6 +158,12 @@ jobs:
158
- name: Run Test Failure Summary
159
id: check_failure
160
run: |
161
+ # list all coverage xml files
162
+ echo "Coverage XML files:"
163
+ find . -name "*.xml" -print
164
+ echo "Review shared-coverage.xml for shared coverage"
165
+ cat shared-coverage.xml
166
+ # Check if failed_tests.txt exists and is not empty
167
if [ -s failed_tests.txt ]; then
168
echo "The following tests failed:"
169
cat failed_tests.txt
0 commit comments