-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathphpunit.xml
40 lines (40 loc) · 1.53 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
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.0/phpunit.xsd"
cacheTokens="false"
colors="true"
verbose="true"
forceCoversAnnotation="true"
printerClass="\PHPUnit\Util\TestDox\CliTestDoxPrinter"
timeoutForMediumTests="5"
timeoutForSmallTests="1"
timeoutForLargeTests="300"
failOnRisky="true"
failOnWarning="true"
defaultTestSuite="tests"
beStrictAboutCoversAnnotation="true"
beStrictAboutTodoAnnotatedTests="true"
cacheResult="true"
cacheResultFile="../var/qa/.phpunit.result.cache"
executionOrder="depends,random"
>
<logging>
<log type="coverage-html" target="../var/qa/phpunit_coverage"/>
<log type="coverage-text" target="php://stdout"/>
<log type="coverage-xml" target="../var/qa/phpunit_logs/coverage-xml"/>
<log type="coverage-clover" target="../var/qa/phpunit_logs/coverage.clover"/>
<log type="junit" target="../var/qa/phpunit_logs/phpunit.junit.xml"/>
</logging>
<filter>
<whitelist>
<directory suffix=".php">../src</directory>
</whitelist>
</filter>
<testsuites>
<testsuite name="tests">
<directory suffix="Test.php">../tests/Small</directory>
<directory suffix="Test.php">../tests/Medium</directory>
<directory suffix="Test.php">../tests/Large</directory>
</testsuite>
</testsuites>
</phpunit>