-
Notifications
You must be signed in to change notification settings - Fork 0
/
all-deprecations-phpunit.xml
executable file
·32 lines (32 loc) · 1.09 KB
/
all-deprecations-phpunit.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.1/phpunit.xsd"
cacheDirectory=".phpunit.cache"
failOnDeprecation="true"
displayDetailsOnTestsThatTriggerDeprecations="true"
>
<php>
<ini name="display_errors" value="1" />
<ini name="error_reporting" value="-1" />
<ini name="memory_limit" value="-1" />
</php>
<coverage />
<testsuites>
<testsuite name="test">
<directory>tests</directory>
</testsuite>
</testsuites>
<!-- Issue: Silenced deprecations only end up in baseline if ignoreSuppressionOfPhpWarnings is set true -->
<source
ignoreSuppressionOfDeprecations="true"
ignoreSuppressionOfPhpWarnings="true"
>
<include>
<directory suffix=".php">src/</directory>
<directory suffix=".php">tests/</directory>
</include>
<exclude>
<directory>vendor</directory>
</exclude>
</source>
</phpunit>