deployer/phpunit.xml.dist

31 lines
920 B
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"
verbose="true"
>
2013-07-11 15:47:09 +04:00
<testsuites>
2020-04-25 23:00:08 +03:00
<testsuite name="Unit">
<directory>test/src/</directory>
</testsuite>
2017-05-31 13:55:57 +07:00
<testsuite name="Misc">
<directory>test/misc/</directory>
</testsuite>
2020-04-25 23:00:08 +03:00
<testsuite name="Recipe">
<directory>test/recipe/</directory>
</testsuite>
2013-07-11 15:47:09 +04:00
</testsuites>
<filter>
2017-02-24 23:53:31 +07:00
<whitelist addUncoveredFilesFromWhitelist="true">
<directory>src/</directory>
2020-04-25 23:00:08 +03:00
<exclude>
<directory suffix=".php">vendor/</directory>
<directory>bin/</directory>
</exclude>
2017-02-24 23:53:31 +07:00
</whitelist>
</filter>
2015-01-02 20:52:02 +03:00
</phpunit>