-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
43 lines (40 loc) · 1.06 KB
/
phpunit.xml.dist
File metadata and controls
43 lines (40 loc) · 1.06 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php"
colors="true"
verbose="true"
failOnRisky="true"
failOnWarning="true"
failOnNotice="true"
failOnDeprecation="true"
failOnPhpunitDeprecation="true"
failOnPhpunitWarning="true"
failOnIncomplete="true"
failOnSkipped="true"
failOnEmptyTestSuite="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutChangesToGlobalState="true"
stopOnFailure="false"
executionOrder="random"
resolveDependencies="true"
enforceTimeLimit="true"
defaultTimeLimit="10"
timeoutForSmallTests="2"
timeoutForMediumTests="5"
timeoutForLargeTests="10">
<php>
<ini name="error_reporting" value="-1"/>
<ini name="default_socket_timeout" value="10"/>
<ini name="max_execution_time" value="15"/>
</php>
<testsuites>
<testsuite name="Yii Debug API tests">
<directory>./tests</directory>
</testsuite>
</testsuites>
<coverage>
<include>
<directory>./src</directory>
</include>
</coverage>
</phpunit>