Skip to content

Commit

Permalink
remove PASSED from list of logged tasks (#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
jglaszka authored Sep 21, 2023
1 parent e91182b commit e9a94fd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import org.gradle.api.tasks.testing.logging.TestLogEvent.PASSED
import org.gradle.api.tasks.testing.logging.TestLogEvent.FAILED
import org.gradle.api.tasks.testing.logging.TestLogEvent.SKIPPED

Expand Down Expand Up @@ -52,7 +51,7 @@ tasks.jacocoTestReport {
tasks.test {
useJUnitPlatform()
testLogging {
events = setOf(PASSED, SKIPPED, FAILED)
events = setOf(SKIPPED, FAILED)
}
}

Expand Down

0 comments on commit e9a94fd

Please sign in to comment.