fix gw alias to preserve colors and fix test strength threshold

This commit is contained in:
Michael Hoennig 2022-09-06 13:32:53 +02:00
parent 4ec26108fa
commit 87e2b05926
2 changed files with 3 additions and 3 deletions

View File

@ -5,10 +5,10 @@ gradleWrapper () {
fi fi
TEMPFILE=$(mktemp /tmp/gw.XXXXXX) TEMPFILE=$(mktemp /tmp/gw.XXXXXX)
./gradlew "$@" | tee $TEMPFILE unbuffer ./gradlew "$@" | tee $TEMPFILE
echo echo
grep "Report:" $TEMPFILE grep --color=never "Report:" $TEMPFILE
rm $TEMPFILE rm $TEMPFILE
} }

View File

@ -269,7 +269,7 @@ pitest {
// As Java unit tests are pretty pointless in our case, this maybe makes not much sense. // As Java unit tests are pretty pointless in our case, this maybe makes not much sense.
mutationThreshold = 71 mutationThreshold = 71
coverageThreshold = 57 coverageThreshold = 57
testStrengthThreshold = 99 testStrengthThreshold = 88
outputFormats = ['XML', 'HTML'] outputFormats = ['XML', 'HTML']
timestampedReports = false timestampedReports = false