summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul-Christian Volkmer2023-08-09 18:32:03 +0200
committerPaul-Christian Volkmer2023-08-09 18:32:03 +0200
commit501762d4513ba6050e99e5e670a67a6cb672020d (patch)
tree93739030cb58d84e7bb7af14e86cc8789a20ba86
parent1a640ff9dff1cc182c4ffc1d00dff370e42a25de (diff)
Add test logging
-rw-r--r--build.gradle.kts4
1 files changed, 4 insertions, 0 deletions
diff --git a/build.gradle.kts b/build.gradle.kts
index 78bad77..1f1a123 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -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") {