Last active
November 9, 2019 23:19
-
-
Save artem-zinnatullin/0fc70ee1f86bb77fdabf to your computer and use it in GitHub Desktop.
Android Unit tests logging configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
android { | |
// ... | |
testOptions.unitTests.all { | |
testLogging { | |
events 'passed', 'skipped', 'failed', 'standardOut', 'standardError' | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Any idea how to use this with android tests?
My question at stackoverflow: http://stackoverflow.com/questions/29900363/gradle-tests-report-for-android-tests