-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml
42 lines (40 loc) · 1.46 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
41
42
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.5/phpunit.xsd"
backupGlobals="true"
backupStaticAttributes="false"
cacheTokens="false"
colors="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
forceCoversAnnotation="false"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
stopOnRisky="false"
verbose="false">
<testsuites>
<testsuite name="unit">
<directory>tests/</directory>
<exclude>tests/Integration</exclude>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src/</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="build/coverage/html" lowUpperBound="35"
highLowerBound="70"/>
<log type="coverage-clover" target="build/clover.xml"/>
<!-- <log type="coverage-php" target="/tmp/coverage.serialized"/>-->
<!-- <log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/>-->
<log type="junit" target="build/junit.xml"/>
<!-- <log type="testdox-html" target="/tmp/testdox.html"/>-->
<!-- <log type="testdox-text" target="/tmp/testdox.txt"/>-->
</logging>
</phpunit>