Passing '--continue' further

I am launching my build(1).gradle with ‘–continue’ option:

>gradle mytask --continue
mytask has a type of GradleBuild. and it is launching another build(2).gradle, but seems option “–continue” is not pasing further to this build.gradle. Is there any way to pass ‘–continue’ option further to another build.gradle?
  task mytask(type: GradleBuild){

buildFile = ‘tests/build.gradle’

tasks = [‘internalTask’]

startParameter.projectProperties = […]

… }

Well I have found that --continue is passing further, actually.

It occured that my trouble is causing by android plugin task - “connectedAndroidTest” - which fails script execution, if an error occured in any test =(

Well I have found that --continue is passing further, actually.

My actuall trouble is that --continue is not skipping the task ‘connectedAndroidTest’ which is actually a DefaultTask, with default gradle methods.

But gradle is not skipping this, if anything wrong happends.

p.s. can’t remove the issue, and create a new one =(. so actuall question is here, decided not to duplicate lot’s of issues