-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtravis.xml
28 lines (27 loc) · 944 Bytes
/
travis.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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
syntaxCheck="false"
bootstrap="vendor/autoload.php"
>
<php>
<var name="DB_DSN" value="mysql:dbname=db;host=localhost" />
<var name="DB_USER" value="root" />
<var name="DB_PASSWD" value="" />
<var name="DB_DBNAME" value="db" />
<var name="DB_HOST" value="localhost" />
<server name="APP_ENVIRONMENT" value="travis" />
</php>
<testsuites>
<testsuite name="default">
<directory suffix="Test.php">src/DBALGateway/Tests/</directory>
<exclude>src/DBALGateway/Tests/Base</exclude>
</testsuite>
</testsuites>
</phpunit>