test: restore all-skipped coverage guard with custom reporter

Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax
2026-02-27 12:20:09 +01:00
parent 1b45318512
commit b1b6c30312
5 changed files with 86 additions and 4 deletions

View File

@@ -47,7 +47,7 @@ jobs:
-
name: Check coverage
run: |
if [ -f ./coverage/clover.xml ]; then
if [ -f ./coverage/clover.xml ] && [ ! -f ./coverage/allSkipped.txt ]; then
echo "RUN_CODECOV=true" >> $GITHUB_ENV
else
echo "RUN_CODECOV=false" >> $GITHUB_ENV
@@ -217,7 +217,7 @@ jobs:
-
name: Check coverage
run: |
if [ -f ./coverage/clover.xml ]; then
if [ -f ./coverage/clover.xml ] && [ ! -f ./coverage/allSkipped.txt ]; then
echo "RUN_CODECOV=true" >> $GITHUB_ENV
else
echo "RUN_CODECOV=false" >> $GITHUB_ENV