forked from bresam/ivory-google-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
28 lines (27 loc) · 925 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true" bootstrap="tests/autoload.php">
<testsuites>
<testsuite name="Ivory Google Map Test Suite">
<directory suffix="Test.php">./tests/</directory>
</testsuite>
</testsuites>
<php>
<server name="API_KEY" value="" />
<server name="API_SECRET" value="" />
<server name="BROWSER_NAME" value="chrome" />
<server name="SELENIUM_HOST" value="selenium-chrome" />
<server name="CACHE_PATH" value="tests/.cache" />
<server name="CACHE_RESET" value="false" />
</php>
<filter>
<whitelist>
<directory suffix=".php">./src/</directory>
</whitelist>
</filter>
<groups>
<exclude>
<!-- Temporarily disabled due to incorrect batch execution errors -->
<group>functional</group>
</exclude>
</groups>
</phpunit>