forked from egeloen/ivory-google-map
-
Notifications
You must be signed in to change notification settings - Fork 10
/
phpunit.ci.xml
31 lines (28 loc) · 916 Bytes
/
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
<?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="Ivory Google Map Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<php>
<env name="SYMFONY_DEPRECATIONS_HELPER" value="weak" />
<server name="BROWSER_NAME" value="chrome" />
<server name="CACHE_PATH" value="tests/.cache" />
</php>
<coverage>
<include>
<directory suffix=".php">./src/</directory>
</include>
</coverage>
<groups>
<exclude>
<!-- Temporarily disabled due to incorrect batch execution errors -->
<group>functional</group>
</exclude>
</groups>
</phpunit>