Skip to content
This repository has been archived by the owner on Mar 1, 2021. It is now read-only.

Commit

Permalink
Add additional test logging output
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielThomas committed Oct 21, 2015
1 parent 8525be0 commit f187498
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,18 @@ jacocoTestReport {

tasks.withType(Test) { task ->
jacocoTestReport.executionData += files("$buildDir/jacoco/${task.name}.exec")

testLogging {
events "failed"
exceptionFormat "short"

debug {
events "started", "skipped", "failed"
exceptionFormat "full"
}

info.events = ["failed", "skipped"]
}
}

pluginBundle {
Expand Down

0 comments on commit f187498

Please sign in to comment.