-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpgsql.travis.xml
More file actions
35 lines (33 loc) · 1.04 KB
/
pgsql.travis.xml
File metadata and controls
35 lines (33 loc) · 1.04 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
<?xml version="1.0" encoding="utf-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="../../vendor/phpunit/phpunit/phpunit.xsd"
colors="true"
verbose="true"
failOnRisky="true"
bootstrap="../bootstrap.php"
>
<php>
<env name="TYPE" value="pgsql"/>
<env name="HOST" value="localhost" />
<env name="USERNAME" value="postgres" />
<env name="PASSWORD" value="" />
<env name="DB_NAME" value="tests" />
<env name="DB_PORT" value="5432"/>
</php>
<testsuites>
<testsuite name="Database Test Suite">
<directory>./../Tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./../../src</directory>
</whitelist>
</filter>
<groups>
<exclude>
<group>performance</group>
<group>locking_functional</group>
</exclude>
</groups>
</phpunit>