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.
我已经编写了一个 build.xml 用于通过 phing 生成报告。
我在 build.xml 中添加了以下命令以生成代码覆盖率报告::
<exec command="phpunit --coverage-html ./code_Coverage_Report codecoverage_test/CodeCoverage.php "/>
现在我想在 build.xml 中添加一个检查,如果我的代码覆盖率报告百分比小于 85%,那么构建应该会自动失败。
这在 PHPUnit 中是不可能的。有一个拉取请求来实现你想要的,但它被拒绝了。
https://github.com/sebastianbergmann/phpunit/pull/2402