在审查器中生成代码覆盖率



我创建了一个小包,我想为它获得一些资格。因此,其中之一是Scrutinizer覆盖率和代码质量。与本教程一样,我创建了一个文件并将其重命名为 scrutinizer.yml 并将以下内容放入其中:

build:
tests:
    override:
        -
            command: 'vendor/bin/phpunit --coverage-clover=some-file'
            coverage:
                file: 'some-file'
                format: 'clover'

但是在我的Scrutinizer个人资料中同步后,我得到了这个"覆盖率 NaN%">

那我该怎么办?

我找到了。它与PHPUnit的设置有关。我创建一个文件并将其重命名为 phpunit.xml并为其输入以下配置代码。

<phpunit backupGlobals="false"
     backupStaticAttributes="false"
     colors="true"
     convertErrorsToExceptions="true"
     convertNoticesToExceptions="true"
     convertWarningsToExceptions="true"
     processIsolation="false"
     stopOnFailure="false"
     syntaxCheck="false"
>
<testsuites>
    <testsuite name="Package Test Suite">
        <directory suffix=".php">./tests/</directory>
    </testsuite>
</testsuites>
</phpunit>

并在运行 phpunit 用于创建本地覆盖.xml文件之后; 它给了我以下错误:

Error:         No code coverage driver is available

经过一番搜索,我发现我必须将以下代码插入 phpunit.xml

<filter>
    <whitelist processUncoveredFilesFromWhitelist="true">
        <directory suffix=".php">src</directory>
    </whitelist>
</filter>

所以最终的 phpunit.xml 文件是

<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
         backupStaticAttributes="false"
         colors="true"
         convertErrorsToExceptions="true"
         convertNoticesToExceptions="true"
         convertWarningsToExceptions="true"
         processIsolation="false"
         stopOnFailure="false"
         syntaxCheck="false"
>
    <testsuites>
        <testsuite name="Package Test Suite">
            <directory suffix=".php">./tests/</directory>
        </testsuite>
    </testsuites>
    <filter>
        <whitelist processUncoveredFilesFromWhitelist="true">
            <directory suffix=".php">src</directory>
        </whitelist>
    </filter>
</phpunit>

相关内容

  • 没有找到相关文章