-
Notifications
You must be signed in to change notification settings - Fork 20
/
phpunit_coverage.xml
38 lines (37 loc) · 1.09 KB
/
phpunit_coverage.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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.3/phpunit.xsd"
bootstrap="vendor/autoload.php"
processIsolation="false"
cacheDirectory=".phpunit.cache"
>
<coverage includeUncoveredFiles="true">
<report>
<clover outputFile="./test-results/coverage.xml"/>
<html outputDirectory="./test-results/coverage-report"/>
<text outputFile="php://stdout"/>
</report>
</coverage>
<testsuites>
<testsuite name="all">
<directory>tests</directory>
<exclude>tests/benchmark</exclude>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>exceptions</group>
<!-- The exceptions group are tests that do not work properly with xDebug enabled. -->
</exclude>
</groups>
<logging/>
<source>
<include>
<directory suffix=".php">./source</directory>
</include>
<exclude>
<directory>./vendor</directory>
</exclude>
</source>
</phpunit>