-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
34 lines (31 loc) · 1.16 KB
/
phpunit.xml
File metadata and controls
34 lines (31 loc) · 1.16 KB
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
32
33
34
<phpunit bootstrap="tests/bootstrap.php"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
colors="false"
stopOnError="true"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false">
<testsuites>
<testsuite name="etcd-tests">
<directory>tests/Etcd</directory>
</testsuite>
</testsuites>
<!-- Including and excluding files for code coverage report -->
<filter>
<!-- Files / directories to include -->
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
<!-- Settings for log output -->
<logging>
<log type="coverage-html" target="build/coverage" title="QED Code Coverage"
charset="UTF-8" yui="true" highlight="true"
lowUpperBound="35" highLowerBound="70"/>
<log type="junit" target="build/logs/junit.xml"
logIncompleteSkipped="false"/>
<log type="coverage-text" target="build/logs/cov-txt.txt"/>
</logging>
</phpunit>