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>