Сan请您指导我如何降低存储库中配置文件中的完整测试覆盖率阈值?我在某个项目中有 33% 的完全覆盖率,我的编辑将其降低到 0.2,我想对 codeclimate 说这是可以接受的
我在根目录中有我的 golang repo 和 .codeclimate.yml:
version: "2" # required to adjust maintainability checks
checks:
return-statements:
enabled: false
Сan请您指导我如何降低存储库中配置文件中的完整测试覆盖率阈值?我在某个项目中有 33% 的完全覆盖率,我的编辑将其降低到 0.2,我想对 codeclimate 说这是可以接受的
我在根目录中有我的 golang repo 和 .codeclimate.yml:
version: "2" # required to adjust maintainability checks
checks:
return-statements:
enabled: false
检查这个文件。您可以在 codeclimate 中禁用Enforce Diff Coverage
和Enforce Totoal Coverage
检查,以便不会为您的提交运行这些报告。