forked from php-etl/akeneo-expression-language
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.phpunit.xml
54 lines (52 loc) · 1.81 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
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="http://schema.phpunit.de/5.7/phpunit.xsd"
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
cacheTokens="true"
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="true"
verbose="true">
<testsuites>
<testsuite name="unit">
<directory>unit/</directory>
<exclude>vendor/</exclude>
</testsuite>
<testsuite name="functional">
<directory>functional/</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>
<listener class="MyBuilder\PhpunitAccelerator\TestListener"/>
</listeners>
</phpunit>