Skip to content

Commit

Permalink
Merge pull request #69 from kenjis/update-phpunit.xml
Browse files Browse the repository at this point in the history
Update phpunit.xml
  • Loading branch information
koriym authored Mar 18, 2021
2 parents 56d5fe3 + 4002b20 commit b7f6d11
Showing 1 changed file with 17 additions and 15 deletions.
32 changes: 17 additions & 15 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php">
<testsuites>
<testsuite name="all">
<directory>tests</directory>
</testsuite>
</testsuites>
<php>
<ini name="error_reporting" value="-1" />
</php>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
</whitelist>
</filter>
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
bootstrap="vendor/autoload.php">
<coverage cacheDirectory=".phpunit.cache/code-coverage"
processUncoveredFiles="true"
pathCoverage="true">
<include>
<directory suffix=".php">src</directory>
</include>
</coverage>
<testsuites>
<testsuite name="all">
<directory>tests</directory>
</testsuite>
</testsuites>
<php>
<ini name="error_reporting" value="-1"/>
</php>
</phpunit>

0 comments on commit b7f6d11

Please sign in to comment.