Skip to content

Commit

Permalink
Update phpunit.xml.dist
Browse files Browse the repository at this point in the history
  • Loading branch information
webda2l authored Jan 9, 2024
1 parent 52f2a58 commit 72997c1
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -2,33 +2,33 @@

<!-- https://phpunit.de/manual/current/en/appendixes.configuration.html -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/9.6/phpunit.xsd"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
backupGlobals="false"
colors="true"
bootstrap="vendor/autoload.php"
>
<php>
<ini name="error_reporting" value="-1" />
</php>
<coverage>
<include>
<directory>src/</directory>
</include>
<exclude>
<directory>src/Resources</directory>
</exclude>
</coverage>

<listeners>
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener" />
</listeners>
<php>
<ini name="error_reporting" value="-1"/>
</php>

<filter>
<whitelist>
<directory>src/</directory>
<exclude>
<directory>src/Resources</directory>
</exclude>
</whitelist>
</filter>
<listeners>
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener"/>
</listeners>

<testsuites>
<testsuite name="Bundle Test Suite">
<directory>tests/</directory>
<exclude>tests/Fixtures</exclude>
<exclude>tests/tmp</exclude>
</testsuite>
</testsuites>
<testsuites>
<testsuite name="Bundle Test Suite">
<directory>tests/</directory>
<exclude>tests/Fixtures</exclude>
<exclude>tests/tmp</exclude>
</testsuite>
</testsuites>
</phpunit>

0 comments on commit 72997c1

Please sign in to comment.