Skip to content

Commit

Permalink
Add coverage attributes to phpunit.xml.dist
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbalandan committed Aug 2, 2024
1 parent b82c63b commit 2d878fb
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
columns="max"
executionOrder="random"
requireCoverageMetadata="true"
beStrictAboutCoverageMetadata="true"
beStrictAboutChangesToGlobalState="true"
beStrictAboutOutputDuringTests="true"
failOnRisky="true"
Expand All @@ -24,6 +23,13 @@
</include>
</source>

<coverage ignoreDeprecatedCodeUnits="true">
<report>
<clover outputFile="build/phpunit/clover.xml" />
<html outputDirectory="build/phpunit/html" lowUpperBound="50" highLowerBound="90" />
</report>
</coverage>

<php>
<ini name="date.timezone" value="UTC" />
<ini name="memory_limit" value="-1" />
Expand Down

0 comments on commit 2d878fb

Please sign in to comment.