Skip to content

Commit

Permalink
Add default coverage settings.
Browse files Browse the repository at this point in the history
  • Loading branch information
costdev committed Nov 2, 2024
1 parent 802a269 commit 6430e8a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,17 @@
<directory suffix="Test.php">./tests/</directory>
</testsuite>
</testsuites>
<coverage includeUncoveredFiles="true" processUncoveredFiles="false" pathCoverage="true" cacheDirectory="./tests/cache">
<include>
<file>./aspire-update.php</file>
<directory suffix=".php">./includes</directory>
</include>
<exclude>
<file>./includes/autoload.php</file>
</exclude>
<report>
<text outputFile="php://stdout" showOnlySummary="true"/>
<html outputDirectory="./tests/coverage"/>
</report>
</coverage>
</phpunit>

0 comments on commit 6430e8a

Please sign in to comment.