-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathphpunit.xml
More file actions
53 lines (50 loc) · 2.5 KB
/
Copy pathphpunit.xml
File metadata and controls
53 lines (50 loc) · 2.5 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.5/phpunit.xsd"
bootstrap="vendor/autoload.php"
cacheDirectory=".build/phpunit.cache"
executionOrder="depends,defects"
beStrictAboutCoverageMetadata="true"
beStrictAboutOutputDuringTests="true"
failOnRisky="true"
failOnWarning="true"
displayDetailsOnTestsThatTriggerWarnings="true">
<php>
<env name="AZURE_STORAGE_CONNECTION_STRING" value="UseDevelopmentStorage=true"/>
</php>
<testsuites>
<testsuite name="unit">
<directory suffix="Test.php">tests/Identity/Unit</directory>
<directory suffix="Test.php">tests/Storage/Blob/Unit</directory>
<directory suffix="Test.php">tests/Storage/BlobFlysystemBundle/Unit</directory>
<directory suffix="Test.php">tests/Storage/BlobLaravel/Unit</directory>
<directory suffix="Test.php">tests/Storage/Common/Unit</directory>
<directory suffix="Test.php">tests/Storage/File/Share/Unit</directory>
<directory suffix="Test.php">tests/Storage/Queue/Unit</directory>
<directory suffix="Test.php">tests/Storage/QueueLaravel/Unit</directory>
</testsuite>
<testsuite name="functional">
<directory suffix="Test.php">tests/Identity/Functional</directory>
<directory suffix="Test.php">tests/Storage/Blob/Functional</directory>
</testsuite>
<testsuite name="integration">
<directory suffix="Test.php">tests/Identity/Integration</directory>
<directory suffix="Test.php">tests/Storage/Blob/Integration</directory>
<directory suffix="Test.php">tests/Storage/BlobFlysystem/Integration</directory>
<directory suffix="Test.php">tests/Storage/BlobLaravel/Integration</directory>
<directory suffix="Test.php">tests/Storage/File/Share/Integration</directory>
<directory suffix="Test.php">tests/Storage/Queue/Integration</directory>
<directory suffix="Test.php">tests/Storage/QueueLaravel/Integration</directory>
</testsuite>
</testsuites>
<source restrictNotices="true" restrictWarnings="true" ignoreIndirectDeprecations="true">
<include>
<directory>src</directory>
</include>
</source>
<groups>
<exclude>
<group>slow</group>
</exclude>
</groups>
</phpunit>