Skip to content

Commit

Permalink
Merge pull request #2273 from tarlepp/chore(env)/phpunit-configuration
Browse files Browse the repository at this point in the history
Updated PHPUnit configuration
  • Loading branch information
tarlepp committed Apr 16, 2023
2 parents d32cea4 + 7cdda0b commit d3ea08b
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions phpunit.xml.dist
Expand Up @@ -2,11 +2,9 @@
<!-- https://phpunit.de/manual/current/en/appendixes.configuration.html -->
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd"
backupGlobals="false"
xsi:noNamespaceSchemaLocation="tools/01_phpunit/vendor/phpunit/phpunit/phpunit.xsd"
colors="true"
testdox="true"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutOutputDuringTests="true"
stopOnError="true"
stopOnFailure="true"
Expand All @@ -29,8 +27,8 @@
<file>./src/Kernel.php</file>
</exclude>
<report>
<clover outputFile="build/logs/clover.xml"/>
<html outputDirectory="build/report" lowUpperBound="55" highLowerBound="90" />
<clover outputFile="build/logs/clover.xml" />
<html outputDirectory="build/report" lowUpperBound="75" highLowerBound="95" />
<text outputFile="php://stdout" showOnlySummary="true" showUncoveredFiles="true" />
</report>
</coverage>
Expand All @@ -54,7 +52,7 @@
https://symfony.com/doc/current/components/phpunit_bridge.html#direct-and-indirect-deprecations
-->
<env name="SYMFONY_DEPRECATIONS_HELPER" value="max[direct]=0"/>
<env name="SYMFONY_DEPRECATIONS_HELPER" value="max[direct]=0" />
</php>
<testsuites>
<testsuite name="Unit">
Expand Down

0 comments on commit d3ea08b

Please sign in to comment.