gradle-cobertura-plugin icon indicating copy to clipboard operation
gradle-cobertura-plugin copied to clipboard

Possible to continue with coverage report even if some tests fail to pass?

Open seanleblanc opened this issue 7 years ago • 1 comments

I notice that the plugin (when running cobertura task) will not continue with coverage if the unit tests do not pass. Is there an option to switch this off?

seanleblanc avatar Feb 06 '18 23:02 seanleblanc

integrationTest { ignoreFailures = true }

This you can add to build.gradle file. Which will solve your issue.

deepakacharya avatar Aug 06 '19 07:08 deepakacharya