Skip to content

Commit 3b75abc

Browse files
author
Sebastian Krätzig
committed
Fix deprecated coverage XML config
1 parent 8eb5d2b commit 3b75abc

File tree

1 file changed

+24
-22
lines changed

1 file changed

+24
-22
lines changed

phpunit.xml

+24-22
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,27 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit
3-
bootstrap="vendor/autoload.php"
4-
verbose="true"
5-
stopOnError="false"
6-
stopOnFailure="false"
7-
stopOnIncomplete="false"
8-
stopOnSkipped="false"
9-
convertErrorsToExceptions="true"
10-
convertNoticesToExceptions="true"
11-
convertWarningsToExceptions="true"
12-
colors="true"
13-
forceCoversAnnotation="false"
14-
processIsolation="false">
15-
<testsuites>
16-
<testsuite name="php-imap Tests">
17-
<directory>tests</directory>
18-
</testsuite>
19-
</testsuites>
20-
<filter>
21-
<whitelist>
22-
<directory>src</directory>
23-
</whitelist>
24-
</filter>
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
bootstrap="vendor/autoload.php"
5+
verbose="true"
6+
stopOnError="false"
7+
stopOnFailure="false"
8+
stopOnIncomplete="false"
9+
stopOnSkipped="false"
10+
convertErrorsToExceptions="true"
11+
convertNoticesToExceptions="true"
12+
convertWarningsToExceptions="true"
13+
colors="true"
14+
forceCoversAnnotation="false"
15+
processIsolation="false"
16+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
17+
<coverage>
18+
<include>
19+
<directory>src</directory>
20+
</include>
21+
</coverage>
22+
<testsuites>
23+
<testsuite name="php-imap Tests">
24+
<directory>tests</directory>
25+
</testsuite>
26+
</testsuites>
2527
</phpunit>

0 commit comments

Comments
 (0)