diff options
author | Michael Cullum <unknownbliss@phpbbdevelopers.net> | 2012-03-23 06:40:15 +0000 |
---|---|---|
committer | Michael Cullum <unknownbliss@phpbbdevelopers.net> | 2012-03-23 06:40:15 +0000 |
commit | 5bcdfe94dd487441565c00450b3a8efcaeecd840 (patch) | |
tree | 4d89d547f08618238e03ba1288d2b7d55f3cbe7e /travis/phpunit-postgres-travis.xml | |
parent | Merge remote-tracking branch 'rxu/ticket/10684' into develop-olympus (diff) | |
download | phpbb-5bcdfe94dd487441565c00450b3a8efcaeecd840.tar.gz phpbb-5bcdfe94dd487441565c00450b3a8efcaeecd840.tar.bz2 phpbb-5bcdfe94dd487441565c00450b3a8efcaeecd840.zip |
[ticket/10723] Stop Travis running all tests on sqlite
Correct information so all tests don't run on sqlite
PHPBB3-10723
Diffstat (limited to 'travis/phpunit-postgres-travis.xml')
-rw-r--r-- | travis/phpunit-postgres-travis.xml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/travis/phpunit-postgres-travis.xml b/travis/phpunit-postgres-travis.xml index 02db76ae78..461a53bcb1 100644 --- a/travis/phpunit-postgres-travis.xml +++ b/travis/phpunit-postgres-travis.xml @@ -25,12 +25,12 @@ <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_"/> + <server name="PHPBB_TEST_DBMS" value="postgres"/> + <server name="PHPBB_TEST_DBHOST" value="localhost" /> + <server name="PHPBB_TEST_DBPORT" value="5432" /> + <server name="PHPBB_TEST_DBNAME" value="phpbb_tests" /> + <server name="PHPBB_TEST_DBUSER" value="postgres" /> + <server name="PHPBB_TEST_DBPASSWD" value="" /> + <server name="PHPBB_TEST_TABLE_PREFIX" value="phpbb_"/> </php> </phpunit> |