forked from awsdocs/aws-doc-sdk-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
53 lines (52 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 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
bootstrap="vendor/autoload.php"
executionOrder="depends,defects"
beStrictAboutTodoAnnotatedTests="true"
convertDeprecationsToExceptions="true"
failOnRisky="true"
failOnWarning="true"
verbose="true">
<!-- <testsuites>-->
<!-- <testsuite name="kms-basics">-->
<!-- <file>kms/tests/KmsBasicsTests.php</file>-->
<!-- </testsuite>-->
<!-- <testsuite name="s3-express-basics">-->
<!-- <file>s3/tests/S3ExpressBasicsTest.php</file>-->
<!-- </testsuite>-->
<!-- <testsuite name="dynamodb-basics">-->
<!-- <file>dynamodb/dynamodb_basics/tests/DynamoDBBasicsTest.php</file>-->
<!-- </testsuite>-->
<!-- <testsuite name="partiql-basics">-->
<!-- <file>dynamodb/partiql_basics/tests/PartiQLBasicsTest.php</file>-->
<!-- </testsuite>-->
<!-- <testsuite name="iam">-->
<!-- <directory>iam/tests/</directory>-->
<!-- </testsuite>-->
<!-- <testsuite name="glue-basics">-->
<!-- <file>glue/tests/GlueBasicsTest.php</file>-->
<!-- </testsuite>-->
<!-- <testsuite name="lambda-basics">-->
<!-- <file>lambda/tests/LambdaTest.php</file>-->
<!-- </testsuite>-->
<!-- <testsuite name="auto-scaling-basics">-->
<!-- <file>auto-scaling/tests/AutoScalingBasicsTest.php</file>-->
<!-- </testsuite>-->
<!-- </testsuites>-->
<coverage cacheDirectory=".phpunit.cache/code-coverage"
processUncoveredFiles="false">
<include>
<directory suffix=".php">dynamodb</directory>
<directory suffix=".php">glue</directory>
<directory suffix=".php">iam</directory>
<directory suffix=".php">lambda</directory>
<directory suffix=".php">auto-scaling</directory>
<directory suffix=".php">kms</directory>
<directory suffix=".php">s3</directory>
</include>
<exclude>
<directory suffix=".php">*vendor*</directory>
</exclude>
</coverage>
</phpunit>