Skip to content

Commit

Permalink
ci(phpunit): Fix coverage exclusion in phpunit.xml.dist
Browse files Browse the repository at this point in the history
- Removed commented out exclusion for app/Contracts in coverage settings
- Updated coverage settings to include processUncoveredFiles
  • Loading branch information
ityaozm@gmail.com committed Jun 24, 2024
1 parent aecd0a5 commit c334b28
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,18 @@
<exclude>vendor/</exclude>
</testsuite>
</testsuites>
<!--<coverage processUncoveredFiles="true">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./app</directory>
</include>
<exclude>
&lt;!&ndash;<directory>app/Contracts</directory>&ndash;&gt;
<!--<directory>app/Contracts</directory>-->
<file>app/Commands/BuildCommand.php</file>
<file>app/Support/JsonFixer.php</file>
<file>app/Support/helpers.php</file>
<file>app/Macros/StrMacro.php</file>
</exclude>
</coverage>-->
</coverage>
<source>
<include>
<directory suffix=".php">./app</directory>
Expand Down

0 comments on commit c334b28

Please sign in to comment.