-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
44 lines (41 loc) · 1.31 KB
/
phpunit.xml.dist
File metadata and controls
44 lines (41 loc) · 1.31 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
colors="true"
processIsolation="false"
stopOnFailure="false"
bootstrap="vendor/autoload.php"
verbose="true"
>
<php>
<ini name="memory_limit" value="-1"/>
<ini name="apc.enable_cli" value="1"/>
</php>
<logging>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="true"/>
<log type="coverage-html" target="build/test-coverage"/>
<log type="coverage-clover" target="build/test-results/clover.xml"/>
<log type="coverage-crap4j" target="build/test-results/crap4j.xml"/>
<log type="junit" target="build/test-results/junit.xml"/>
</logging>
<testsuites>
<testsuite name="example">
<directory>tests/Example/</directory>
</testsuite>
<testsuite name="environment">
<directory>tests/Environment/</directory>
</testsuite>
<testsuite name="integration">
<directory>tests/Integration/</directory>
</testsuite>
<testsuite name="unit">
<directory>tests/Unit/</directory>
</testsuite>
</testsuites>
<!-- Ignore vendor tests in code coverage reports -->
<filter>
<whitelist>
<directory suffix=".php">./src/</directory>
<directory suffix=".php">./webroot/custom-themes/</directory>
</whitelist>
</filter>
</phpunit>