-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
20 lines (20 loc) · 888 Bytes
/
phpunit.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<phpunit bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true"
convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false"
stopOnFailure="false" verbose="true">
<testsuites>
<testsuite name="TangoTiendas Tests">
<directory>tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
</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>