Skip to content

Commit 9061af2

Browse files
committed
Run automatic update of PHPUnit config
1 parent 90a1d2c commit 9061af2

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

phpunit.xml.dist

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
3-
<phpunit backupGlobals="false"
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
4+
backupGlobals="false"
45
backupStaticAttributes="false"
56
colors="true"
67
convertErrorsToExceptions="true"
@@ -9,15 +10,15 @@
910
processIsolation="false"
1011
stopOnFailure="false"
1112
bootstrap="tests/bootstrap.php"
12-
>
13+
>
14+
<coverage processUncoveredFiles="true">
15+
<include>
16+
<directory suffix=".php">src</directory>
17+
</include>
18+
</coverage>
1319
<testsuites>
1420
<testsuite name="Symfony console completion">
1521
<directory>./tests</directory>
1622
</testsuite>
1723
</testsuites>
18-
<filter>
19-
<whitelist processUncoveredFilesFromWhitelist="true">
20-
<directory suffix=".php">src</directory>
21-
</whitelist>
22-
</filter>
23-
</phpunit>
24+
</phpunit>

0 commit comments

Comments
 (0)