1
0
mirror of https://github.com/pcvolkmer/etl-processor.git synced 2025-04-19 17:26:51 +00:00

Add test logging

This commit is contained in:
Paul-Christian Volkmer 2023-08-09 18:32:03 +02:00
parent 1a640ff9df
commit 501762d451

View File

@ -1,3 +1,4 @@
import org.gradle.api.tasks.testing.logging.TestLogEvent
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
@ -76,6 +77,9 @@ tasks.withType<KotlinCompile> {
tasks.withType<Test> {
useJUnitPlatform()
testLogging {
events(TestLogEvent.FAILED, TestLogEvent.PASSED, TestLogEvent.SKIPPED)
}
}
task<Test>("integrationTest") {