mirror of
https://github.com/deployphp/deployer.git
synced 2025-02-23 16:54:08 +01:00
33 lines
964 B
XML
33 lines
964 B
XML
<phpunit bootstrap="test/bootstrap.php"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
stopOnError="false"
|
|
stopOnFailure="false"
|
|
verbose="true"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="Unit">
|
|
<directory>test/src/</directory>
|
|
</testsuite>
|
|
<testsuite name="Misc">
|
|
<directory>test/misc/</directory>
|
|
</testsuite>
|
|
<testsuite name="Recipe">
|
|
<directory>test/recipe/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
|
|
<whitelist addUncoveredFilesFromWhitelist="true">
|
|
<directory>src/</directory>
|
|
<directory>recipe/</directory>
|
|
<exclude>
|
|
<directory suffix=".php">vendor/</directory>
|
|
<directory>bin/</directory>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|