mirror of
https://github.com/deployphp/deployer.git
synced 2025-02-24 17:22:41 +01:00
25 lines
720 B
XML
25 lines
720 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>
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">src/</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|