configure Sonar only on the root project, aggregate the sonar reports, and always generate Kover XML coverage reports after tests

This commit is contained in:
Adam 2023-06-05 22:20:06 +02:00
parent e45fc71ab9
commit 17ea49aba6
3 changed files with 20 additions and 14 deletions

View file

@ -42,4 +42,6 @@ tasks.withType<Test>().configureEach {
exceptionFormat = TestExceptionFormat.FULL
events = setOf(TestLogEvent.PASSED, TestLogEvent.SKIPPED, TestLogEvent.FAILED)
}
finalizedBy(tasks.matching { it.name == "koverXmlReport" })
}