Skip to content

Commit 7af4600

Browse files
committed
Revert "Update phpunit.xml.dist"
This reverts commit ef6ccdc.
1 parent ef6ccdc commit 7af4600

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

phpunit.xml.dist

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,23 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
backupGlobals="false"
2+
<phpunit backupGlobals="false"
43
backupStaticAttributes="false"
54
bootstrap="vendor/autoload.php"
65
colors="true"
76
convertErrorsToExceptions="true"
87
convertNoticesToExceptions="true"
98
convertWarningsToExceptions="true"
109
processIsolation="false"
11-
stopOnFailure="false"
12-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
13-
<coverage processUncoveredFiles="true">
14-
<include>
15-
<directory suffix=".php">./src</directory>
16-
</include>
17-
</coverage>
10+
stopOnFailure="false">
1811
<testsuites>
1912
<testsuite name="Unit">
2013
<directory suffix="Test.php">./tests/Unit</directory>
2114
</testsuite>
2215
</testsuites>
16+
<filter>
17+
<whitelist processUncoveredFilesFromWhitelist="true">
18+
<directory suffix=".php">./src</directory>
19+
</whitelist>
20+
</filter>
2321
<php>
2422
<env name="APP_ENV" value="testing"/>
2523
<env name="CACHE_DRIVER" value="array"/>

0 commit comments

Comments
 (0)