Skip to content

Commit 1a00dac

Browse files
committed
update phpunit config
1 parent aeb018e commit 1a00dac

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

phpunit.coverage.dist.xml

+7-9
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,22 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd"
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.0/phpunit.xsd"
44
bootstrap="vendor/autoload.php"
55
backupGlobals="false"
66
colors="true"
77
stopOnFailure="false"
88
cacheDirectory=".phpunit.cache"
99
backupStaticProperties="false"
1010
>
11-
<coverage>
11+
<source>
1212
<include>
1313
<directory suffix=".php">src</directory>
1414
</include>
15-
<exclude>
16-
<directory suffix=".php">src/Attributes</directory>
17-
<directory suffix=".php">src/Contracts</directory>
18-
<directory suffix=".php">src/Support/Facades</directory>
19-
<file>src/Http/AllowedAppends.php</file>
20-
<file>src/Http/SortDirection.php</file>
21-
</exclude>
15+
</source>
16+
<coverage includeUncoveredFiles="true"
17+
pathCoverage="false"
18+
ignoreDeprecatedCodeUnits="true"
19+
disableCodeCoverageIgnore="true">
2220
<report>
2321
<clover outputFile="clover.xml"/>
2422
</report>

0 commit comments

Comments
 (0)