Update phpunit config

This commit is contained in:
Fabien Potencier
2020-08-23 12:46:19 +02:00
parent a293147027
commit ad8d012e20
+5 -18
View File
@@ -1,33 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" bootstrap="vendor/autoload.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
bootstrap="vendor/autoload.php"
>
<testsuites> <testsuites>
<testsuite name="Twig Test Suite"> <testsuite name="Twig Test Suite">
<directory>./tests/</directory> <directory>./tests/</directory>
</testsuite> </testsuite>
</testsuites> </testsuites>
<php> <php>
<ini name="error_reporting" value="-1" /> <ini name="error_reporting" value="-1" />
<ini name="xdebug.overload_var_dump" value="0" /> <ini name="xdebug.overload_var_dump" value="0" />
</php> </php>
<listeners> <listeners>
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener" /> <listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener" />
</listeners> </listeners>
<coverage>
<filter> <include>
<whitelist>
<directory suffix=".php">./src/</directory> <directory suffix=".php">./src/</directory>
</whitelist> </include>
</filter> </coverage>
</phpunit> </phpunit>