如何在管道中生成覆盖率报告?

时间:2019-08-07 07:51:15

标签: phpunit bitbucket-pipelines

在我的phpunit.xml文件中,我有一个日志类型列表。

<logging>
    <log type="coverage-php" target="results/clover-unit.cov"/>
    <log type="junit" target="results/phpunit/phpunit.xml" />
    <log type="coverage-clover" target="results/clover.xml"/>
    <log type="coverage-html" target="./results" lowUpperBound="35" highLowerBound="70"/>
</logging>

因此,当我运行"vendor/bin/phpunit"时,它将创建一个文件夹名称结果,并且其中包含带有视觉描述的文件夹和文件列表。

到目前为止,我正在尝试将其实现到bitbucket管道中。

在yml文件中,我有以下几行。

- vendor/bin/phpunit --coverage-text --colors=never --coverage-html="./reports"

artifacts:
 - reports

但是我无法生成这些文件夹。有人可以帮我吗?

谢谢。

0 个答案:

没有答案