deployer/phpunit.xml

27 lines
771 B
XML
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"
syntaxCheck="true"
verbose="true"
>
2013-07-11 15:47:09 +04:00
<testsuites>
<testsuite name="Source">
<directory>test/src/</directory>
</testsuite>
<testsuite name="Recipes">
<directory>test/recipe/</directory>
2013-07-11 15:47:09 +04:00
</testsuite>
</testsuites>
<filter>
<blacklist>
<directory suffix=".php">vendor/</directory>
<directory>bin/</directory>
2015-02-17 12:43:01 +03:00
<directory>src/Resources/</directory>
</blacklist>
</filter>
2015-01-02 20:52:02 +03:00
</phpunit>