Removed testAll from kover report

This commit is contained in:
Erik C. Thauvin 2022-09-16 21:37:09 -07:00
parent 7581c26d59
commit cc6cd6aed3
2 changed files with 10 additions and 3 deletions

View file

@ -99,6 +99,7 @@ tasks.withType(Test).configureEach {
}
}
task testAll(type: Test, group: 'verification', description: 'Run all tests.') {
useTestNG() {
suites('src/test/resources/testng.xml')
@ -179,6 +180,12 @@ incrementBuildMeta {
}
}
kover {
instrumentation {
excludeTasks.add('testAll')
}
}
sonarqube {
properties {
property('sonar.organization', 'ethauvin-github')