-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml
21 lines (21 loc) · 1 KB
/
phpunit.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<phpunit bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" verbose="true">
<testsuites>
<testsuite name="GentoShipping Tests">
<directory>Test</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">.</directory>
<exclude>
<directory suffix=".php">Test</directory>
<directory suffix=".php">vendor</directory>
</exclude>
</whitelist>
</filter>
<logging>
<!-- <log type="coverage-text" target="php://stdout" showUncoveredFiles="true"/> -->
<log type="coverage-clover" target="build/logs/clover.xml" />
<!-- <log type="coverage-html" target="build/logs/html" showUncoveredFiles="true" lowUpperBound="60" highLowerBound="95" /> -->
</logging>
</phpunit>