forked from aws/aws-sdk-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
55 lines (50 loc) · 2.45 KB
/
phpunit.xml.dist
File metadata and controls
55 lines (50 loc) · 2.45 KB
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
54
55
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./tests/bootstrap.php"
colors="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
testSuiteLoaderClass="PHPUnit_Runner_StandardTestSuiteLoader">
<testsuites>
<testsuite name="Aws">
<directory>tests/Aws/Tests</directory>
</testsuite>
</testsuites>
<!-- Exclude the integration tests in regular unit tests -->
<groups>
<exclude>
<group>integration</group>
<group>performance</group>
</exclude>
</groups>
<logging>
<log type="junit" target="build/artifacts/logs/junit.xml" logIncompleteSkipped="false" />
</logging>
<filter>
<whitelist>
<directory suffix=".php">./src/Aws</directory>
<exclude>
<directory suffix="Interface.php">./src/Aws</directory>
<directory>./src/Aws/**/Enum</directory>
<directory>./src/Aws/**/Resources</directory>
<directory>./src/Aws/Common/Exception/DomainException.php</directory>
<directory>./src/Aws/Common/Exception/InvalidArgumentException.php</directory>
<directory>./src/Aws/Common/Exception/LogicException.php</directory>
<directory>./src/Aws/Common/Exception/OverflowException.php</directory>
<directory>./src/Aws/Common/Exception/OutOfBoundsException.php</directory>
<directory>./src/Aws/Common/Exception/RuntimeException.php</directory>
<directory>./src/Aws/Common/Exception/UnexpectedValueException.php</directory>
<directory suffix="Exception.php">./src/Aws/CloudFront/Exception</directory>
<directory suffix="Exception.php">./src/Aws/DataPipeline/Exception</directory>
<directory suffix="Exception.php">./src/Aws/DynamoDb/Exception</directory>
<directory suffix="Exception.php">./src/Aws/Glacier/Exception</directory>
<directory suffix="Exception.php">./src/Aws/Route53/Exception</directory>
<directory suffix="Exception.php">./src/Aws/S3/Exception</directory>
<directory suffix="Exception.php">./src/Aws/Sts/Exception</directory>
</exclude>
</whitelist>
</filter>
</phpunit>