baikal-storage-plugin/phpunit.xml.dist

30 lines
652 B
Plaintext
Raw Permalink Normal View History

2020-05-03 16:41:59 -05:00
<?xml version="1.0"?>
<phpunit
colors="true"
bootstrap="vendor/autoload.php"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
beStrictAboutTestsThatDoNotTestAnything="true">
2020-09-13 01:29:05 -05:00
<testsuite name="Baikal Storage Plugin Tests">
<directory>./tests/</directory>
2020-05-03 16:41:59 -05:00
</testsuite>
<filter>
<whitelist>
<directory>./lib</directory>
<exclude>
<directory>./lib/tests</directory>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="/tmp/report" lowUpperBound="35"
highLowerBound="70"/>
</logging>
</phpunit>