[ci skip] Change test logging settings to log by default (#7203)

This commit is contained in:
Owen1212055 2021-12-30 16:52:30 -05:00 committed by GitHub
parent a99a33cdd9
commit 721f14842f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,6 @@
import org.gradle.api.tasks.testing.logging.TestExceptionFormat;
import org.gradle.api.tasks.testing.logging.TestLogEvent;
plugins {
java
`maven-publish`
@ -27,6 +30,13 @@ subprojects {
tasks.withType<ProcessResources> {
filteringCharset = Charsets.UTF_8.name()
}
tasks.withType<Test> {
testLogging {
showStackTraces = true
exceptionFormat = TestExceptionFormat.FULL
events(TestLogEvent.STANDARD_OUT)
}
}
if (name == "Paper-MojangAPI") {
return@subprojects