index : flyspray | |
Archlinux32 customized Flyspray installation | gitolite user |
summaryrefslogtreecommitdiff |
author | Andreas Baumann <mail@andreasbaumann.cc> | 2020-02-01 09:05:48 +0100 |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2020-02-01 09:05:48 +0100 |
commit | 6854cb3f4d8219cf1829e32122eb2502a916eae9 (patch) | |
tree | 350feb504587d932e02837a1442b059759927646 /phpunit_pgsql.xml |
-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> |