mirror of
https://github.com/deployphp/deployer.git
synced 2025-02-24 09:12:51 +01:00
34 lines
1.0 KiB
XML
34 lines
1.0 KiB
XML
<phpunit bootstrap="test/bootstrap.php"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
stopOnError="false"
|
|
stopOnFailure="false"
|
|
syntaxCheck="true"
|
|
verbose="true"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="Source">
|
|
<directory>test/src/</directory>
|
|
</testsuite>
|
|
<testsuite name="Recipe">
|
|
<directory>test/recipe/</directory>
|
|
</testsuite>
|
|
<testsuite name="Misc">
|
|
<directory>test/misc/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<blacklist>
|
|
<directory suffix=".php">vendor/</directory>
|
|
<directory>bin/</directory>
|
|
</blacklist>
|
|
<whitelist addUncoveredFilesFromWhitelist="true">
|
|
<directory>src/</directory>
|
|
<directory>recipe/common.php</directory>
|
|
<directory>recipe/deploy/</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|