-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathphpunit.dist.xml
More file actions
51 lines (51 loc) · 2.05 KB
/
Copy pathphpunit.dist.xml
File metadata and controls
51 lines (51 loc) · 2.05 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?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/10.5/phpunit.xsd"
colors="true"
beStrictAboutOutputDuringTests="true"
bootstrap="tests/bootstrap.php"
displayDetailsOnTestsThatTriggerDeprecations="true"
displayDetailsOnTestsThatTriggerErrors="true"
displayDetailsOnTestsThatTriggerNotices="true"
displayDetailsOnTestsThatTriggerWarnings="true"
displayDetailsOnPhpunitDeprecations="true"
failOnNotice="true"
failOnWarning="true"
cacheDirectory=".phpunit.cache"
>
<php>
<!-- <env name="SYMFONY_DEPRECATIONS_HELPER" value="max[direct]=0"/>-->
<ini name="memory_limit" value="192M"/>
<ini name="display_errors" value="1"/>
<ini name="error_reporting" value="-1"/>
<server name="APP_ENV" value="test" force="true"/>
<server name="SHELL_VERBOSITY" value="-1"/>
</php>
<testsuites>
<testsuite name="unit">
<directory>tests</directory>
<exclude>tests/Integration</exclude>
</testsuite>
<testsuite name="integration">
<directory>tests/Integration</directory>
<exclude>tests/Integration/Controller</exclude>
<exclude>tests/Integration/MeasurementLogs</exclude>
</testsuite>
<testsuite name="api">
<directory>tests/Integration/Controller</directory>
</testsuite>
<testsuite name="measurement_logs">
<directory>tests/Integration/MeasurementLogs</directory>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>AutodiscoverIntegrationTest</group>
</exclude>
</groups>
<source ignoreSuppressionOfDeprecations="true" restrictNotices="true" restrictWarnings="true">
<include>
<directory>src</directory>
</include>
</source>
</phpunit>