summaryrefslogtreecommitdiff
path: root/phpunit_pgsql.xml
blob: 15565f55e766662169a1ba37319d55f2d72fe305 (plain)
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="tests/bootstrap.php" colors="true" backupGlobals="false">
<php>
  <var name="db_dsn" value="pgsql:dbname=flyspray_test;host=localhost"/>
  <var name="dbtype" value="pgsql"/>
  <var name="dbhost" value="localhost"/>
  <var name="dbname" value="flyspray_test"/>
  <var name="dbuser" value="postgres"/>
  <var name="dbpass" value=""/>
  <var name="dbprefix" value="flyspray_"/>
</php>
<testsuites>
  <testsuite name="Flyspray Test Suite">
    <directory>./tests/</directory>
  </testsuite>
</testsuites>
<filter>
  <whitelist>
    <directory>./</directory>
    <exclude>
      <directory>./tests</directory>
      <directory>./vendor</directory>
    </exclude>
  </whitelist>
</filter>
</phpunit>