-
-
Notifications
You must be signed in to change notification settings - Fork 836
/
phpunit.xml.dist
34 lines (30 loc) · 1.15 KB
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0" encoding="UTF-8"?>
<!-- http://phpunit.de/manual/4.1/en/appendixes.configuration.html -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.6/phpunit.xsd"
backupGlobals="false"
colors="true"
failOnWarning="true"
failOnRisky="true"
stopOnFailure="false"
bootstrap="vendor/autoload.php"
displayDetailsOnTestsThatTriggerWarnings="true"
>
<php>
<env name="SHELL_VERBOSITY" value="-1" />
<ini name="error_reporting" value="-1" />
<ini name="memory_limit" value="512M" />
<!-- add "generateBaseline=true&" to the value to generate a new baseline. Keep in mind to clear the test cache before. -->
<env name="SYMFONY_DEPRECATIONS_HELPER" value="ignoreFile=./phpunit-ignore.txt&max[self]=0" />
</php>
<testsuites>
<testsuite name="Project Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">src</directory>
</include>
</source>
</phpunit>