-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathphpunit.xml.dist
29 lines (29 loc) · 927 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
27
28
29
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" bootstrap="phpstan-bootstrap.php" cacheDirectory=".phpunit.cache">
<testsuites>
<testsuite name="default">
<directory>developer/tests/unit</directory>
</testsuite>
</testsuites>
<coverage>
<!--
<report>
<html outputDirectory="developer/tests/coverage"/>
<text outputFile="php://stdout" showOnlySummary="true"/>
</report>
-->
</coverage>
<php>
<env name="XDEBUG_MODE" value="off"/>
</php>
<source>
<include>
<directory suffix=".php">html</directory>
<directory suffix=".php">vendor/xaraya</directory>
</include>
<exclude>
<directory suffix=".php">html/themes</directory>
<directory suffix=".php">html/var</directory>
</exclude>
</source>
</phpunit>