Skip to content

Commit

Permalink
Upgrade PHPUnit config
Browse files Browse the repository at this point in the history
  • Loading branch information
arokettu committed Dec 2, 2020
1 parent a0cb3c9 commit 27ebecf
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions phpunit.xml.dist
Expand Up @@ -3,18 +3,20 @@
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
bootstrap="./vendor/autoload.php">
bootstrap="./vendor/autoload.php"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">

<testsuites>
<testsuite name="Test suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>

<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">src</directory>
</whitelist>
</filter>
</include>
</coverage>

</phpunit>

0 comments on commit 27ebecf

Please sign in to comment.