-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml.dist
26 lines (26 loc) · 989 Bytes
/
phpunit.xml.dist
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
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="./vendor/silverstripe/framework/tests/bootstrap.php" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage includeUncoveredFiles="true">
<include>
<directory suffix=".php">./app/src/</directory>
</include>
<report>
<html outputDirectory="/tmp/report" lowUpperBound="35" highLowerBound="70"/>
<php outputFile="/tmp/coverage.serialized"/>
<text outputFile="php://stdout" showUncoveredFiles="false"/>
</report>
</coverage>
<testsuite name="Default">
<directory>./app/tests</directory>
</testsuite>
<logging/>
<groups>
<exclude>
<group>sanitychecks</group>
</exclude>
</groups>
<php>
<get name="flush" value="1"/>
<!-- <env name="XDEBUG_MODE" value="coverage" />-->
</php>
</phpunit>