aboutsummaryrefslogtreecommitdiff
path: root/integration-tests/build.gradle.kts
diff options
context:
space:
mode:
Diffstat (limited to 'integration-tests/build.gradle.kts')
-rw-r--r--integration-tests/build.gradle.kts11
1 files changed, 11 insertions, 0 deletions
diff --git a/integration-tests/build.gradle.kts b/integration-tests/build.gradle.kts
index aaa8b153..a41269b9 100644
--- a/integration-tests/build.gradle.kts
+++ b/integration-tests/build.gradle.kts
@@ -1,3 +1,6 @@
+import org.gradle.api.tasks.testing.logging.TestExceptionFormat
+import org.gradle.api.tasks.testing.logging.TestLogEvent
+
subprojects {
sourceSets {
create("integrationTest") {
@@ -38,6 +41,14 @@ subprojects {
?: System.getenv("DOKKA_INTEGRATION_TEST_IS_EXHAUSTIVE")?.toBoolean()
?: false.toString()
)
+
+ testLogging {
+ exceptionFormat = TestExceptionFormat.FULL
+ events(TestLogEvent.SKIPPED, TestLogEvent.FAILED)
+ showExceptions = true
+ showCauses = true
+ showStackTraces = true
+ }
}
tasks.check {