aboutsummaryrefslogtreecommitdiffstats
path: root/travis/phpunit-postgres-travis.xml
diff options
context:
space:
mode:
authorMichael Cullum <unknownbliss@phpbbdevelopers.net>2012-03-22 14:13:25 +0000
committerMichael Cullum <unknownbliss@phpbbdevelopers.net>2012-03-22 14:13:25 +0000
commitc7f65fba627680e7de81ae6c7ea9c1e0fc4359ea (patch)
tree134b5d1847b7e39efef825620cb7c652bdc12fd1 /travis/phpunit-postgres-travis.xml
parentd1980f6ad616e800ff82299ceafc5c8c763c6570 (diff)
downloadforums-c7f65fba627680e7de81ae6c7ea9c1e0fc4359ea.tar
forums-c7f65fba627680e7de81ae6c7ea9c1e0fc4359ea.tar.gz
forums-c7f65fba627680e7de81ae6c7ea9c1e0fc4359ea.tar.bz2
forums-c7f65fba627680e7de81ae6c7ea9c1e0fc4359ea.tar.xz
forums-c7f65fba627680e7de81ae6c7ea9c1e0fc4359ea.zip
[task/travis] Rename travis phpunit config files
PHPBB3-10718
Diffstat (limited to 'travis/phpunit-postgres-travis.xml')
-rw-r--r--travis/phpunit-postgres-travis.xml30
1 files changed, 30 insertions, 0 deletions
diff --git a/travis/phpunit-postgres-travis.xml b/travis/phpunit-postgres-travis.xml
new file mode 100644
index 0000000000..e44696a335
--- /dev/null
+++ b/travis/phpunit-postgres-travis.xml
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<phpunit backupGlobals="true"
+ backupStaticAttributes="true"
+ colors="true"
+ convertErrorsToExceptions="true"
+ convertNoticesToExceptions="true"
+ convertWarningsToExceptions="true"
+ processIsolation="false"
+ stopOnFailure="false"
+ syntaxCheck="true"
+ strict="true"
+ bootstrap="../tests/bootstrap.php">
+ <testsuites>
+ <testsuite name="phpBB Test Suite">
+ <directory suffix="_test.php">../tests/</directory>
+ </testsuite>
+ </testsuites>
+
+ <php>
+ <!-- "Real" test database -->
+ <!-- uncomment, otherwise sqlite memory runs -->
+ <const name="dbms" value="postgres"/>
+ <const name="dbhost" value="localhost" />
+ <const name="dbport" value="5432" />
+ <const name="dbname" value="phpbb_tests" />
+ <const name="dbuser" value="postgres" />
+ <const name="dbpasswd" value="" />
+ <const name="table_prefix" value="phpbb_"/>
+ </php>
+</phpunit>