-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml
53 lines (53 loc) · 2.25 KB
/
phpunit.xml
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./Tests/bootstrap.php"
colors="true"
verbose="true"
stopOnFailure="false">
<php>
<!-- Change the following value to the path of your Guzzle installation e.g. /Users/michael/projects/guzzle -->
<env name="GUZZLE" value="/path/to/guzzle" />
<!-- Change to your RightScale acount # -->
<env name="ACCT_NUM" value="123" />
<!-- Change to your RightScale account email -->
<env name="EMAIL" value="[email protected]" />
<!-- Change to your RightScale account password -->
<env name="PASSWORD" value="password" />
<!-- Populate Tests/mock with raw HTTP requests and responses from the tests -->
<env name="HTTP_TRACE" value="false" />
<!-- For the mocks created above, strip out sensitive bits like SSH keys, account numbers, and ids -->
<env name="OBFUSCATE_IDS" value="false" />
</php>
<logging>
<log type="coverage-html" target="test_reports/coverage" charset="UTF-8"
yui="true" highlight="false"
lowUpperBound="35" highLowerBound="70"/>
</logging>
<testsuites>
<testsuite name="API 1.0 Commands">
<directory suffix="Test.php">./Tests/Command/Ec2</directory>
</testsuite> <!-- Passing -->
<testsuite name="API 1.5 Commands">
<directory suffix="Test.php">./Tests/Command/Mc</directory>
</testsuite> <!-- Failing -->
<testsuite name="API 1.0 Models">
<directory suffix="Test.php">./Tests/Model/Ec2</directory>
</testsuite> <!-- Passing -->
<testsuite name="API 1.5 Models">
<directory suffix="Test.php">./Tests/Model/Mc</directory>
</testsuite> <!-- Failing -->
<testsuite name="Common and Utils">
<directory suffix="Tests.php">./Tests/Common</directory>
<directory suffix="Tests.php">./Tests/Utils</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./</directory>
<exclude>
<directory>./Tests</directory>
<directory>./docs</directory>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>
</phpunit>