Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Bamboo 中启用了 Clover,但测试仪失败了,因为我没有足够的覆盖范围。
我想降低通过覆盖率,但我看不到任何地方可以设置它。
如何降低 Bamboo 中的通过率覆盖率?
您可以在 maven-clover2-plugin 中指定 targetPercentage 的配置。您还可以指定排除的类
<configuration> <targetPercentage>60%</targetPercentage> <excludes> <exclude> myPackage/AppConfig.java</exclude> </excludes> </configuration>