Skip to content

Commit 118cca2

Browse files
eddumelendezfokion
authored andcommitted
Improve test logging in examples and smoke-test (testcontainers#9145)
1 parent b5d5872 commit 118cca2

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

examples/build.gradle

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,16 @@ subprojects {
1414
mavenCentral()
1515
}
1616

17+
test {
18+
defaultCharacterEncoding = "UTF-8"
19+
testLogging {
20+
displayGranularity 1
21+
showStackTraces = true
22+
exceptionFormat = 'full'
23+
events "STARTED", "PASSED", "FAILED", "SKIPPED"
24+
}
25+
}
26+
1727
checkstyle {
1828
toolVersion = "9.3"
1929
configFile = rootProject.file('../config/checkstyle/checkstyle.xml')

smoke-test/build.gradle

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,16 @@ subprojects {
1414
mavenCentral()
1515
}
1616

17+
test {
18+
defaultCharacterEncoding = "UTF-8"
19+
testLogging {
20+
displayGranularity 1
21+
showStackTraces = true
22+
exceptionFormat = 'full'
23+
events "STARTED", "PASSED", "FAILED", "SKIPPED"
24+
}
25+
}
26+
1727
checkstyle {
1828
toolVersion = "9.3"
1929
configFile = rootProject.file('../config/checkstyle/checkstyle.xml')

0 commit comments

Comments
 (0)