forked from deployphp/deployer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
28 lines (28 loc) · 875 Bytes
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<phpunit bootstrap="test/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnError="false"
stopOnFailure="false"
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>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory>src/</directory>
<directory>recipe/common.php</directory>
<directory>recipe/deploy/</directory>
</whitelist>
</filter>
</phpunit>