index : flyspray | |
Archlinux32 customized Flyspray installation | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | phpunit_pgsql.xml | 26 |
diff --git a/phpunit_pgsql.xml b/phpunit_pgsql.xml new file mode 100644 index 0000000..15565f5 --- /dev/null +++ b/phpunit_pgsql.xml @@ -0,0 +1,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> |