mirror of
https://github.com/deployphp/deployer.git
synced 2025-02-23 08:45:04 +01:00
31 lines
933 B
XML
31 lines
933 B
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="Recipes">
|
|
<directory>test/recipe/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<blacklist>
|
|
<directory suffix=".php">vendor/</directory>
|
|
<directory>bin/</directory>
|
|
<directory>src/Resources/</directory>
|
|
</blacklist>
|
|
<whitelist addUncoveredFilesFromWhitelist="true">
|
|
<directory>src/</directory>
|
|
<directory>recipe/</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|