-
Notifications
You must be signed in to change notification settings - Fork 133
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dependency to deprecated / EOL code-coverage-api #219
Comments
Maybe you'd have better luck on the Jira tracker. I'm not sure which tracker gets more attention. It might also be useful to try to get some attention from the I have a PR for this (#224). While I think I made some progress, I did hit a roadblock with a dependency version conflict. |
Someone created a ticket: https://issues.jenkins.io/browse/JENKINS-73238 (thank you !). |
Thanks, @jgournet . Let us know what happens if and when you try it out. |
Indeed, Coverage is a better choice. Let's close here then. |
There's a new Coverage plugin, not to confuse with the Code Coverage Plugin. |
Yep, I understand that and I have that installed in my Jenkins installation: Unfortunately I cannot uninstall or disable Code Coverage v4.99 as Cobertura v1.17 has a dependency on it - unless there is another way of performing that. If so could you please enlighten me? |
With the new Coverage plugin you should be able to replace the Cobertura and (old) Coverage plugin. |
Thanks - Like others I thought the new Coverage plug-in was a replacement for the old Code Coverage plug-in rather than a replacement for both. I have now updated my Jenkinsfile to use |
Thank you; I have done the same. Just in case anyone is unclear on what changes are required to make - cobertura(coberturaReportFile: 'coverage/coverage.xml', onlyStable: false)
+ recordCoverage(tools: [[parser: 'COBERTURA', pattern: 'coverage/coverage.xml']]) The |
Jenkins and plugins versions report
any
What Operating System are you using (both controller, and any agents involved in the problem)?
any
Reproduction steps
a. See Jenkins UI warning
b. See code-coverage-api project (eg. https://github.com/jenkinsci/code-coverage-api-plugin)
Expected Results
Migration to Coverage Plugin (as suggested in the docs)
Actual Results
Deprecated / EOL dependency is used
Anything else?
The new Coverage plugin seems not to be a drop in replacement and code changes are likely needed.
Are you interested in contributing a fix?
No response
The text was updated successfully, but these errors were encountered: