forked from bresam/ivory-google-map-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.ci.xml
40 lines (36 loc) · 1.19 KB
/
phpunit.ci.xml
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
38
39
40
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
colors="true"
bootstrap="Tests/autoload.php"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
>
<testsuites>
<testsuite name="IvoryGoogleMapBundle Test Suite">
<directory>./Tests</directory>
</testsuite>
</testsuites>
<php>
<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" />
<server name="API_KEY" value="" />
<server name="API_SECRET" value="" />
</php>
<coverage>
<include>
<directory>./</directory>
</include>
<exclude>
<directory>./Resources</directory>
<directory>./Tests</directory>
<directory>./vendor</directory>
</exclude>
</coverage>
<groups>
<exclude>
<!-- Temporarily disabled due to incorrect batch execution errors -->
<group>functional</group>
</exclude>
</groups>
</phpunit>