Skip to content

Commit

Permalink
Improve test logging in examples and smoke-test (#9145)
Browse files Browse the repository at this point in the history
  • Loading branch information
eddumelendez authored Aug 24, 2024
1 parent c08d003 commit ce83c36
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
10 changes: 10 additions & 0 deletions examples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,16 @@ subprojects {
mavenCentral()
}

test {
defaultCharacterEncoding = "UTF-8"
testLogging {
displayGranularity 1
showStackTraces = true
exceptionFormat = 'full'
events "STARTED", "PASSED", "FAILED", "SKIPPED"
}
}

checkstyle {
toolVersion = "9.3"
configFile = rootProject.file('../config/checkstyle/checkstyle.xml')
Expand Down
10 changes: 10 additions & 0 deletions smoke-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,16 @@ subprojects {
mavenCentral()
}

test {
defaultCharacterEncoding = "UTF-8"
testLogging {
displayGranularity 1
showStackTraces = true
exceptionFormat = 'full'
events "STARTED", "PASSED", "FAILED", "SKIPPED"
}
}

checkstyle {
toolVersion = "9.3"
configFile = rootProject.file('../config/checkstyle/checkstyle.xml')
Expand Down

0 comments on commit ce83c36

Please sign in to comment.