-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathphpunit.xml
32 lines (28 loc) · 867 Bytes
/
phpunit.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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
bootstrap="vendor/autoload.php"
colors="true"
processIsolation="false"
stopOnFailure="false"
cacheDirectory=".phpunit.cache"
backupStaticProperties="false">
<source>
<include>
<directory>./src</directory>
</include>
</source>
<coverage/>
<testsuites>
<testsuite name="Package Test Suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<php>
<env name="PG_HOST" value="postgres"/>
<env name="PG_PORT" value="5432"/>
<env name="MY_HOST" value="mysql"/>
<env name="MY_PORT" value="3306"/>
<env name="MA_HOST" value="mariadb"/>
<env name="MA_PORT" value="3306"/>
</php>
</phpunit>