Skip to content

Commit dc66b18

Browse files
author
Andrey Helldar
authored
Update phpunit.xml
1 parent d4f91a2 commit dc66b18

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

phpunit.xml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
4-
backupGlobals="false"
2+
<phpunit backupGlobals="false"
53
backupStaticAttributes="false"
6-
bootstrap="vendor/autoload.php"
4+
bootstrap="phpunit.php"
75
colors="true"
86
convertErrorsToExceptions="true"
97
convertNoticesToExceptions="true"
108
convertWarningsToExceptions="true"
11-
forceCoversAnnotation="false"
9+
processIsolation="false"
1210
stopOnError="false"
1311
stopOnFailure="false"
1412
verbose="true"
@@ -17,10 +15,15 @@
1715
<env name="APP_KEY" value="AckfSECXIvnK5r28GVIWUAxmbBSjTsmF"/>
1816
</php>
1917
<testsuites>
20-
<testsuite name="default">
18+
<testsuite name="Test Suite">
2119
<directory suffix="Test.php">./tests</directory>
2220
</testsuite>
2321
</testsuites>
22+
<filter>
23+
<whitelist processUncoveredFilesFromWhitelist="true">
24+
<directory suffix=".php">./src</directory>
25+
</whitelist>
26+
</filter>
2427
<logging>
2528
<log type="coverage-clover" target="build/logs/clover.xml"/>
2629
<log type="coverage-text" target="build/logs/coverage.txt"/>

0 commit comments

Comments
 (0)