Sunday, February 21, 2016

How to print standard output of `test` in Gradle

To print standard output in Gradle, add the following configuration:

test {
    testLogging {
        showStandardStreams = true
    }
}

Reference:
http://mrhaki.blogspot.jp/2014/10/gradle-goodness-show-standard-out-or.html

No comments:

Post a Comment