-
Notifications
You must be signed in to change notification settings - Fork 26
/
phpunit.xml.dist
31 lines (31 loc) · 1.09 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
31
<?xml version="1.0" encoding="utf-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="./tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
>
<testsuites>
<testsuite name="Dotenv Test Suite">
<directory suffix=".php">tests/josegonzalez/Queuesadilla</directory>
<exclude>./tests/josegonzalez/Queuesadilla/TestCase.php</exclude>
</testsuite>
</testsuites>
<logging>
<log type="coverage-clover" target="build/logs/clover.xml"/>
<log type="coverage-html" target="build"/>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/>
</logging>
<filter>
<!-- this is required, even if empty, until
https://github.com/sebastianbergmann/phpunit/issues/1872
is resolved -->
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
</whitelist>
</filter>
</phpunit>