Skip to content

Commit 06a6996

Browse files
committed
Only show failed tests
make it easier to find the failed tests in output Signed-off-by: Duane May <[email protected]>
1 parent 201f3e7 commit 06a6996

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

build.gradle

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,8 @@ subprojects {
105105
}
106106

107107
testLogging {
108-
events("skipped", "failed", "passed")
108+
events("failed")
109109
exceptionFormat("full")
110-
111110
// Uncomment the following line to see all standard output from tests (there's a ton of it!)
112111
//showStandardStreams = true
113112
}
@@ -118,9 +117,8 @@ subprojects {
118117
useJUnitPlatform()
119118

120119
testLogging {
121-
events("skipped", "failed", "passed")
120+
events("failed")
122121
exceptionFormat("full")
123-
124122
// Uncomment the following line to see all standard output from tests (there's a ton of it!)
125123
//showStandardStreams = true
126124
}

0 commit comments

Comments
 (0)