forked from php-etl/satellite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
54 lines (54 loc) · 1.76 KB
/
Copy pathphpunit.xml
File metadata and controls
54 lines (54 loc) · 1.76 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
<?xml version="1.0" encoding="UTF-8"?>
<!-- https://phpunit.de/manual/current/en/appendixes.configuration.html -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
stopOnError="false"
stopOnFailure="false"
stopOnWarning="false"
stopOnIncomplete="false"
stopOnRisky="false"
stopOnSkipped="true"
failOnRisky="true"
failOnWarning="true"
beStrictAboutChangesToGlobalState="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutResourceUsageDuringSmallTests="true"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutTodoAnnotatedTests="true"
beStrictAboutCoversAnnotation="true"
enforceTimeLimit="false"
verbose="true">
<coverage/>
<testsuites>
<testsuite name="unit">
<directory>tests/unit/</directory>
<exclude>vendor/</exclude>
</testsuite>
<testsuite name="functional">
<directory>tests/functional/</directory>
<exclude>vendor/</exclude>
</testsuite>
<testsuite name="integration">
<directory>tests/integration/</directory>
<exclude>vendor/</exclude>
</testsuite>
</testsuites>
<php>
<ini name="error_reporting" value="-1"/>
<ini name="memory_limit" value="-1"/>
</php>
<listeners>
<listener class="JohnKary\PHPUnit\Listener\SpeedTrapListener">
<arguments>
<array>
<element key="slowThreshold">
<integer>1000</integer>
</element>
</array>
</arguments>
</listener>
</listeners>
</phpunit>