Skip to content

Commit 8f55215

Browse files
committed
revert phpunit config
1 parent aae11fe commit 8f55215

File tree

1 file changed

+25
-24
lines changed

1 file changed

+25
-24
lines changed

phpunit.xml

Lines changed: 25 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,29 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit backupGlobals="false"
3-
bootstrap="vendor/autoload.php"
4-
colors="true"
5-
processIsolation="false"
6-
stopOnError="false"
7-
stopOnFailure="false"
8-
cacheDirectory=".phpunit.cache"
9-
backupStaticProperties="false"
3+
backupStaticAttributes="false"
4+
bootstrap="vendor/autoload.php"
5+
colors="true"
6+
convertErrorsToExceptions="true"
7+
convertNoticesToExceptions="true"
8+
convertWarningsToExceptions="true"
9+
processIsolation="false"
10+
stopOnError="false"
11+
stopOnFailure="false"
12+
verbose="true"
1013
>
11-
<coverage>
12-
<report>
13-
<html outputDirectory="build/coverage"/>
14-
<text outputFile="build/coverage.txt"/>
15-
<clover outputFile="build/logs/clover.xml"/>
16-
</report>
17-
</coverage>
18-
<testsuites>
19-
<testsuite name="Package Test Suite">
20-
<directory>tests</directory>
21-
</testsuite>
22-
</testsuites>
23-
<source>
24-
<include>
25-
<directory suffix=".php">./src</directory>
26-
</include>
27-
</source>
14+
<coverage>
15+
<include>
16+
<directory suffix=".php">./src</directory>
17+
</include>
18+
<report>
19+
<html outputDirectory="build/coverage"/>
20+
<text outputFile="build/coverage.txt"/>
21+
<clover outputFile="build/logs/clover.xml"/>
22+
</report>
23+
</coverage>
24+
<testsuites>
25+
<testsuite name="Package Test Suite">
26+
<directory>tests</directory>
27+
</testsuite>
28+
</testsuites>
2829
</phpunit>

0 commit comments

Comments
 (0)