I set my project up to run with Robolectric and the the gradle-android-test-plugin. This all works fine and first tests are running and failing.
If a test fails this will also fail the gradle build. Is there a way to just let the build go on and write down the failing tests for evaluation in a later step?
The plan is to integrate the testing in a continuous integration server and there the build should only be unstable if a test fails.
connectedAndroidTestFoo
instead ofconnectedAndroidTest
then second line of the script (see above) should beconnectedAndroidTestFoo {
.Foo
is aflavour
– Mariner