Skip to content

Commit c334b28

Browse files
author
ityaozm@gmail.com
committedJun 24, 2024·
ci(phpunit): Fix coverage exclusion in phpunit.xml.dist
- Removed commented out exclusion for app/Contracts in coverage settings - Updated coverage settings to include processUncoveredFiles
1 parent aecd0a5 commit c334b28

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎phpunit.xml.dist

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,18 @@
1919
<exclude>vendor/</exclude>
2020
</testsuite>
2121
</testsuites>
22-
<!--<coverage processUncoveredFiles="true">
22+
<coverage processUncoveredFiles="true">
2323
<include>
2424
<directory suffix=".php">./app</directory>
2525
</include>
2626
<exclude>
27-
&lt;!&ndash;<directory>app/Contracts</directory>&ndash;&gt;
27+
<!--<directory>app/Contracts</directory>-->
2828
<file>app/Commands/BuildCommand.php</file>
2929
<file>app/Support/JsonFixer.php</file>
3030
<file>app/Support/helpers.php</file>
3131
<file>app/Macros/StrMacro.php</file>
3232
</exclude>
33-
</coverage>-->
33+
</coverage>
3434
<source>
3535
<include>
3636
<directory suffix=".php">./app</directory>

0 commit comments

Comments
 (0)
Please sign in to comment.