Skip to content

Instantly share code, notes, and snippets.

@mosheeshel
Created February 13, 2017 09:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mosheeshel/81d12b55df195bbda068591e2cc1488f to your computer and use it in GitHub Desktop.
Save mosheeshel/81d12b55df195bbda068591e2cc1488f to your computer and use it in GitHub Desktop.
outputs std output when gradle test (usually swallowed), if you have logging in tests and test related code which you want to see during the test run, add this to the test block in gradle
test {
testLogging.showStandardStreams = true
testLogging.exceptionFormat = 'full'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment