deployer/phpunit.xml.dist

34 lines
1.0 KiB
Plaintext
Raw Normal View History

2015-02-06 15:19:41 -02:00
<phpunit bootstrap="test/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnError="false"
stopOnFailure="false"
syntaxCheck="true"
verbose="true"
>
2013-07-11 15:47:09 +04:00
<testsuites>
<testsuite name="Source">
<directory>test/src/</directory>
</testsuite>
2017-05-31 13:55:57 +07:00
<testsuite name="Recipe">
2017-03-16 20:03:11 +07:00
<directory>test/recipe/</directory>
</testsuite>
2017-05-31 13:55:57 +07:00
<testsuite name="Misc">
<directory>test/misc/</directory>
</testsuite>
2013-07-11 15:47:09 +04:00
</testsuites>
<filter>
<blacklist>
<directory suffix=".php">vendor/</directory>
<directory>bin/</directory>
</blacklist>
2017-02-24 23:53:31 +07:00
<whitelist addUncoveredFilesFromWhitelist="true">
<directory>src/</directory>
2017-03-17 13:12:55 +07:00
<directory>recipe/common.php</directory>
<directory>recipe/deploy/</directory>
2017-02-24 23:53:31 +07:00
</whitelist>
</filter>
2015-01-02 20:52:02 +03:00
</phpunit>