-
Notifications
You must be signed in to change notification settings - Fork 2
/
phpunit.xml
25 lines (25 loc) · 1.33 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
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" backupGlobals="true" backupStaticAttributes="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">
<coverage processUncoveredFiles="false">
<include>
<directory suffix=".php">src/</directory>
</include>
<report>
<clover outputFile="build/clover.xml"/>
<html outputDirectory="build/coverage/html" lowUpperBound="35" highLowerBound="70"/>
</report>
</coverage>
<testsuites>
<testsuite name="unit">
<directory>tests/</directory>
<exclude>tests/Integration</exclude>
</testsuite>
</testsuites>
<logging>
<!-- <log type="coverage-php" target="/tmp/coverage.serialized"/>-->
<!-- <log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/>-->
<junit outputFile="build/junit.xml"/>
<!-- <log type="testdox-html" target="/tmp/testdox.html"/>-->
<!-- <log type="testdox-text" target="/tmp/testdox.txt"/>-->
</logging>
</phpunit>