fix gw alias to preserve colors and fix test strength threshold
This commit is contained in:
parent
4ec26108fa
commit
87e2b05926
4
.aliases
4
.aliases
@ -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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user