diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index bf412c9..303d131 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -49,7 +49,7 @@ jobs: with: php-version: "${{ matrix.php-version }}" tools: composer - coverage: "none" + coverage: pcov - name: Get composer cache directory id: composercache @@ -78,5 +78,5 @@ jobs: composer global require --no-progress --no-scripts --no-plugins symfony/flex composer update --no-interaction --no-progress ${{ matrix.composer-flags }} - - name: "Run PHPUnit" - run: "./phpunit" + - name: PHPUnit Tests + run: vendor/bin/simple-phpunit --configuration phpunit.xml.dist --coverage-text diff --git a/Tests/SwaggerPhp/UtilTest.php b/Tests/SwaggerPhp/UtilTest.php index 0eab434..5e392a5 100644 --- a/Tests/SwaggerPhp/UtilTest.php +++ b/Tests/SwaggerPhp/UtilTest.php @@ -37,7 +37,6 @@ use PHPUnit\Framework\TestCase; * @covers \Nelmio\ApiDocBundle\OpenApiPhp\Util::mergeTyped * @covers \Nelmio\ApiDocBundle\OpenApiPhp\Util::mergeProperty * @covers \Nelmio\ApiDocBundle\OpenApiPhp\Util::getNestingIndexes - * @covers \Nelmio\ApiDocBundle\OpenApiPhp\Util::getNesting */ class UtilTest extends TestCase {