mirror of
https://github.com/retailcrm/url-validator.git
synced 2024-11-21 12:46:07 +03:00
77e2d1e5bb
* add php8 support, symfony 6 support, update dev dependencies * share matrix for code quality tools
36 lines
1.1 KiB
XML
36 lines
1.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!-- https://phpunit.de/manual/current/en/appendixes.configuration.html -->
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
|
|
backupGlobals="false"
|
|
colors="false"
|
|
bootstrap="tests/bootstrap.php"
|
|
backupStaticAttributes="false"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="false"
|
|
convertWarningsToExceptions="false"
|
|
processIsolation="true"
|
|
stopOnError="false"
|
|
stopOnFailure="false"
|
|
stopOnIncomplete="false"
|
|
stopOnSkipped="false"
|
|
stopOnRisky="false"
|
|
>
|
|
<coverage>
|
|
<include>
|
|
<directory>src</directory>
|
|
</include>
|
|
<report>
|
|
<clover outputFile="coverage.xml"/>
|
|
</report>
|
|
</coverage>
|
|
<testsuites>
|
|
<testsuite name="Project Test Suite">
|
|
<directory>tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<logging>
|
|
<junit outputFile="test-report.xml"/>
|
|
</logging>
|
|
</phpunit>
|