You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we take unit take coverate figure from top-level coverage element in cobertura XML. However to get better results we need to target the actual coverage for the package. See example below:
In the example above you can see that overall coverage can sometimes be diluted by neighbouring packages, which makes results inaccurate. So onstead of using /covarage attribute line-rate we should use /coverage/packages/package[@name='PackageName'].
The text was updated successfully, but these errors were encountered:
Currently we take unit take coverate figure from top-level coverage element in cobertura XML. However to get better results we need to target the actual coverage for the package. See example below:
In the example above you can see that overall coverage can sometimes be diluted by neighbouring packages, which makes results inaccurate. So onstead of using
/covarage
attribute line-rate we should use/coverage/packages/package[@name='PackageName']
.The text was updated successfully, but these errors were encountered: