Skip to content
This repository was archived by the owner on Jun 28, 2024. It is now read-only.

Commit b92d548

Browse files
committed
Revert "Migrate phpunit configuration"
This reverts commit 29877bf.
1 parent 29877bf commit b92d548

File tree

1 file changed

+27
-17
lines changed

1 file changed

+27
-17
lines changed

phpunit.xml

Lines changed: 27 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,29 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" bootstrap="vendor/autoload.php" colors="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
3-
<coverage>
4-
<report>
5-
<clover outputFile="build/logs/clover.xml"/>
6-
</report>
7-
</coverage>
8-
<logging/>
9-
<testsuites>
10-
<testsuite name="Package Test Suite">
11-
<directory suffix="Test.php">./tests</directory>
12-
</testsuite>
13-
</testsuites>
14-
<source>
15-
<include>
16-
<directory>src</directory>
17-
</include>
18-
</source>
2+
<phpunit
3+
backupGlobals="false"
4+
backupStaticAttributes="false"
5+
bootstrap="vendor/autoload.php"
6+
colors="true"
7+
convertErrorsToExceptions="true"
8+
convertNoticesToExceptions="true"
9+
convertWarningsToExceptions="true"
10+
convertDeprecationsToExceptions="true"
11+
processIsolation="false"
12+
stopOnFailure="false">
13+
14+
<filter>
15+
<whitelist>
16+
<directory>src</directory>
17+
</whitelist>
18+
</filter>
19+
20+
<logging>
21+
<log type="coverage-clover" target="build/logs/clover.xml"/>
22+
</logging>
23+
24+
<testsuites>
25+
<testsuite name="Package Test Suite">
26+
<directory suffix="Test.php">./tests</directory>
27+
</testsuite>
28+
</testsuites>
1929
</phpunit>

0 commit comments

Comments
 (0)