-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathphpunit.xml.dist
30 lines (28 loc) · 1.11 KB
/
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
30
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.6/phpunit.xsd"
colors="true"
verbose="true">
<testsuites>
<testsuite name="All Tests">
<directory>../../../vendor/%COMPOSER_NAME%/Test/Unit/</directory>
<directory>../../../vendor/%COMPOSER_NAME%/Test/Integration/</directory>
</testsuite>
</testsuites>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">../../../vendor/%COMPOSER_NAME%/</directory>
</include>
<exclude>
<directory suffix=".php">../../../vendor/%COMPOSER_NAME%/Test</directory>
<directory suffix=".php">../../../vendor/%COMPOSER_NAME%/Api</directory>
<file>../../../vendor/%COMPOSER_NAME%/registration.php</file>
</exclude>
<report>
<clover outputFile="../../../vendor/%COMPOSER_NAME%/build/logs/clover.xml"/>
</report>
</coverage>
<php>
<ini name="date.timezone" value="UTC"/>
</php>
</phpunit>