gradle-cobertura-plugin
gradle-cobertura-plugin copied to clipboard
Possible to continue with coverage report even if some tests fail to pass?
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?
integrationTest { ignoreFailures = true }
This you can add to build.gradle file. Which will solve your issue.