Skip to content

Instantly share code, notes, and snippets.

@artem-zinnatullin
Last active November 9, 2019 23:19
Show Gist options
  • Star 20 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save artem-zinnatullin/0fc70ee1f86bb77fdabf to your computer and use it in GitHub Desktop.
Save artem-zinnatullin/0fc70ee1f86bb77fdabf to your computer and use it in GitHub Desktop.
Android Unit tests logging configuration
android {
// ...
testOptions.unitTests.all {
testLogging {
events 'passed', 'skipped', 'failed', 'standardOut', 'standardError'
}
}
}
@artem-zinnatullin
Copy link
Author

@mpp-doric
Copy link

nice :)

@SandroMachado
Copy link

Any idea how to use this with android tests?
My question at stackoverflow: http://stackoverflow.com/questions/29900363/gradle-tests-report-for-android-tests

@artem-zinnatullin
Copy link
Author

@SandroMachado answered on SO!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment