-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
37 lines (31 loc) · 1.08 KB
/
phpunit.xml.dist
File metadata and controls
37 lines (31 loc) · 1.08 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
35
36
37
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true"
stopOnFailure="true"
bootstrap="tests/bootstrap.php"
beStrictAboutCoversAnnotation="true"
verbose="true">
<testsuites>
<testsuite name="Test Suite">
<directory>tests/src</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory>src</directory>
</whitelist>
</filter>
<php>
<var name="IPSTACK_ENDPOINT" value="http://api.ipstack.com/" />
<var name="IPSTACK_APIKEY" value="" />
<var name="IPSTACK_DUMMY_IP4" value="8.8.4.4" />
<var name="IPSTACK_DUMMY_IP6" value="2001:4860:4860::8888" />
<var name="IPSTACK_CACHE_PATH" value="var/test-cache" />
</php>
<logging>
<log type="coverage-clover" target="var/build/logs/clover.xml"/>
<log type="coverage-html" target="var/build/logs/html/"/>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="true" />
<log type="testdox-html" target="var/build/logs/testdox.html"/>
<log type="testdox-text" target="var/build/logs/testdox.txt"/>
</logging>
</phpunit>