从 Grails 中的 Cobertura 报告中排除插件

发布于 2024-10-18 04:36:44 字数 166 浏览 11 评论 0原文

我在我的项目中使用 SpringSecurity 插件,还使用 ​​Cobertura 插件来生成代码覆盖率报告。问题是我希望 SpringSecurity 特定类(登录和注销控制器、持久登录令牌等)从我的报告中排除,因为我假设它们正常工作。我希望报告仅包含我的项目特定类的代码覆盖率。我有什么办法可以实现这一目标吗?

I'm using SpringSecurity plugin in my project and also Cobertura plugin for code coverage reports. The thing is I'd like the SpringSecurity specific classes (login and logout controllers, persistent login token and so on) to be excluded from my reports, since I assume they work properly. I'd like reports to contain only my project specific classes code coverage. Is there any way I can achieve that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

故事与诗 2024-10-25 04:36:44
coverage {

    exclusions = ['**/grails-app/conf/**','**/*any.other.package*','**/*any.class*']
    xml = true
    enabledByDefault = true
} 

添加上面的代码片段并在 grails-app/conf 的 BuildConfig.groovy 中配置排除列表

coverage {

    exclusions = ['**/grails-app/conf/**','**/*any.other.package*','**/*any.class*']
    xml = true
    enabledByDefault = true
} 

Add the above snippet and configure the exclusions list in BuildConfig.groovy in grails-app/conf

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文