我在Bamboo中启用了Clover,但测试人员失败了,因为我没有足够的覆盖率。
我想降低传球覆盖百分比,但我没有看到任何地方设置它。
如何降低Bamboo中的传递覆盖率?
答案 0 :(得分:0)
您可以在maven-clover2-plugin中指定targetPercentage的配置。您还可以指定排除的类
<configuration>
<targetPercentage>60%</targetPercentage>
<excludes>
<exclude> myPackage/AppConfig.java</exclude>
</excludes>
</configuration>