如果代码覆盖率报告百分比较低,则构建应该失败

时间:2013-10-23 08:58:44

标签: phpunit phing

我编写了一个build.xml,用于通过phing生成Reports。

我在build.xml中添加了以下命令来生成代码覆盖率Report ::

<exec command="phpunit  --coverage-html ./code_Coverage_Report codecoverage_test/CodeCoverage.php "/>

现在我想在build.xml中添加一个检查,如果我的代码覆盖率报告百分比小于85%,那么构建应该会自动失败。

1 个答案:

答案 0 :(得分:0)

PHPUnit无法做到这一点。有一个请求请求来实现您想要的,但是被拒绝了。

https://github.com/sebastianbergmann/phpunit/pull/2402