Hello, if found another solution, add these lines in the root build.gradle:

//if in start command "--continue" was added, then apply ignoring for android 
test fails
gradle.taskGraph.whenReady { graph ->
    if (gradle.startParameter.continueOnFailure) {
        graph.allTasks.findAll { it.name ==~ /connected.*AndroidTest/ 
}*.ignoreFailures = true
    }
}


On Tuesday, August 19, 2014 at 2:14:05 PM UTC+3, Andrii Bogachenko wrote:
>
> Hello, Guys, guys need your help.
>
> I am having a multiproject, which, we may say, consist of two android 
> projects with configured android plugin.
> from the root project I configured that I am testing them one by one with 
> robotium tests. 
> so that launching one task, executes both project with task 
> 'connectedAndroidTest'.
> If everything is ok, and no one robotium test fails, both applications 
> work good, I am having SUCCESS.
> If in first application something fails, than second application is not 
> even launching.
>
> Even if I am starting execution with '--continue' option. It fails and 
> stops.
>
>

-- 
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