]> Raphaƫl G. Git Repositories - airlibre/blob - phpunit.xml.dist
Ignore config secrets
[airlibre] / phpunit.xml.dist
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <!-- https://phpunit.readthedocs.io/en/latest/configuration.html -->
4 <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5 xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
6 backupGlobals="false"
7 colors="true"
8 bootstrap="tests/bootstrap.php"
9 convertDeprecationsToExceptions="false"
10 >
11 <php>
12 <ini name="display_errors" value="1" />
13 <ini name="error_reporting" value="-1" />
14 <server name="APP_ENV" value="test" force="true" />
15 <server name="SHELL_VERBOSITY" value="-1" />
16 <server name="SYMFONY_PHPUNIT_REMOVE" value="" />
17 <server name="SYMFONY_PHPUNIT_VERSION" value="9.6" />
18 </php>
19
20 <testsuites>
21 <testsuite name="Project Test Suite">
22 <directory>tests</directory>
23 </testsuite>
24 </testsuites>
25
26 <coverage processUncoveredFiles="true">
27 <include>
28 <directory suffix=".php">src</directory>
29 </include>
30 </coverage>
31
32 <listeners>
33 <listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener" />
34 </listeners>
35
36 <extensions>
37 </extensions>
38 </phpunit>