Skip to content

Commit

Permalink
Modify phpunit.xml.dist
Browse files Browse the repository at this point in the history
  • Loading branch information
zonuexe committed Sep 4, 2016
1 parent 8a90c88 commit f7f47b6
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions phpunit.xml.dist
@@ -1,16 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/3.7/phpunit.xsd"
bootstrap="./tests/bootstrap.php">
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/3.7/phpunit.xsd"
bootstrap="./tests/bootstrap.php">
<testsuites>
<testsuite name="AllTests">
<testsuite>
<directory>./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">./src/</directory>
</whitelist>
<blacklist>
<directory suffix=".php">./vendor</directory>
<directory suffix=".php">./vendor/</directory>
</blacklist>
<exclude></exclude>
</filter>
<logging>
<log type="coverage-html" target="build/report/coverage" />
<log type="coverage-clover" target="build/logs/clover.xml" />
</logging>
</phpunit>

0 comments on commit f7f47b6

Please sign in to comment.