forked from AOEpeople/StackFormation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
28 lines (28 loc) · 979 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="tests/phpunit.bootstrap.php"
colors="true"
backupGlobals="false"
backupStaticAttributes="false"
syntaxCheck="false"
stopOnFailure="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true">
<testsuite name="Tests">
<directory suffix="Test.php">./tests</directory>
</testsuite>
<php>
</php>
<filter>
<whitelist>
<directory>src</directory>
<exclude>
<file>src/stackformation.php</file>
<file>src/dotenv.php</file>
<file>src/StackFormation/CommandRegistry.php</file>
<file>src/AwsInspector/CommandRegistry.php</file>
<directory>src/StackFormation/Command</directory>
<directory>src/AwsInspector/Command</directory>
</exclude>
</whitelist>
</filter>
</phpunit>