Can I have gradle tests report for android tests? I want to have the report 
directly in the terminal/command line. Every time a test is passed, failed 
or skipped I want to have the report printed in the terminal with the name 
of the test and the status.

For Unit tests I can add this to the gradle file to have the reports:

tasks.withType(Test) {
    testLogging {
        exceptionFormat "full"
        events "passed", "skipped", "failed"
    }}

I didn't find any solution to the android tests.

This is specially useful in a travis integration.

-- 
You received this message because you are subscribed to the Google Groups 
"adt-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to