-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
56 lines (56 loc) · 2.2 KB
/
phpunit.xml.dist
File metadata and controls
56 lines (56 loc) · 2.2 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
55
56
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
beStrictAboutTestsThatDoNotTestAnything="false"
colors="true" bootstrap="vendor/autoload.php"
enforceTimeLimit="true"
executionOrder="depends"
resolveDependencies="true"
stopOnRisky="true"
timeoutForSmallTests="2"
timeoutForMediumTests="60"
timeoutForLargeTests="180"
verbose="false"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage
processUncoveredFiles="true"
cacheDirectory="tmp/phpunit/coverage-cache">
<include>
<directory suffix=".php">./src</directory>
</include>
<exclude>
<file>./src/config</file>
<directory>./src/main/php/Sniffs/PHPCodeSniffer</directory>
</exclude>
<report>
<clover outputFile="tmp/phpunit/clover.xml"/>
<crap4j outputFile="tmp/phpunit/crap4j.xml" threshold="50"/>
<html outputDirectory="tmp/phpunit/html-coverage" lowUpperBound="50" highLowerBound="90"/>
<text outputFile="php://stdout" showUncoveredFiles="true" showOnlySummary="true"/>
<xml outputDirectory="tmp/phpunit/coverage-xml"/>
</report>
</coverage>
<testsuites>
<testsuite name="AllUnitTests">
<directory>./tests/Unit/</directory>
</testsuite>
<testsuite name="AllFunctionalTests">
<directory>./tests/Functional/</directory>
<exclude>./tests/Functional/Plugin/Fixtures/ComposerTest/vendor*</exclude>
</testsuite>
<testsuite name="InfectionRelevant">
<directory>./tests/Unit/</directory>
<directory>./tests/Functional/</directory>
<exclude>./tests/Functional/Plugin/Fixtures/ComposerTest/vendor*</exclude>
</testsuite>
<testsuite name="AllSystemTests">
<directory>./tests/System/</directory>
</testsuite>
</testsuites>
<logging>
<junit outputFile="tmp/phpunit/junit.xml"/>
</logging>
<php>
<env name="COMPOSER_MEMORY_LIMIT" value="-1" force="true" />
</php>
</phpunit>