Merge remote-tracking branch 'unknownbliss/ticket/10723' into develop-olympus

* unknownbliss/ticket/10723:
  [ticket/10723] Stop Travis running all tests on sqlite
This commit is contained in:
Andreas Fischer 2012-03-24 14:52:50 +01:00
commit 9c85c6c318
2 changed files with 14 additions and 14 deletions

View file

@ -23,12 +23,12 @@
</groups> </groups>
<php> <php>
<const name="dbms" value="mysqli"/> <server name="PHPBB_TEST_DBMS" value="mysqli" />
<const name="dbhost" value="0.0.0.0" /> <server name="PHPBB_TEST_DBHOST" value="0.0.0.0" />
<const name="dbport" value="3306" /> <server name="PHPBB_TEST_DBPORT" value="3306" />
<const name="dbname" value="phpbb_tests" /> <server name="PHPBB_TEST_DBNAME" value="phpbb_tests" />
<const name="dbuser" value="root" /> <server name="PHPBB_TEST_DBUSER" value="root" />
<const name="dbpasswd" value="" /> <server name="PHPBB_TEST_DBPASSWD" value="" />
<const name="table_prefix" value="phpbb_"/> <server name="PHPBB_TEST_TABLE_PREFIX" value="phpbb_"/>
</php> </php>
</phpunit> </phpunit>

View file

@ -25,12 +25,12 @@
<php> <php>
<!-- "Real" test database --> <!-- "Real" test database -->
<!-- uncomment, otherwise sqlite memory runs --> <!-- uncomment, otherwise sqlite memory runs -->
<const name="dbms" value="postgres"/> <server name="PHPBB_TEST_DBMS" value="postgres"/>
<const name="dbhost" value="localhost" /> <server name="PHPBB_TEST_DBHOST" value="localhost" />
<const name="dbport" value="5432" /> <server name="PHPBB_TEST_DBPORT" value="5432" />
<const name="dbname" value="phpbb_tests" /> <server name="PHPBB_TEST_DBNAME" value="phpbb_tests" />
<const name="dbuser" value="postgres" /> <server name="PHPBB_TEST_DBUSER" value="postgres" />
<const name="dbpasswd" value="" /> <server name="PHPBB_TEST_DBPASSWD" value="" />
<const name="table_prefix" value="phpbb_"/> <server name="PHPBB_TEST_TABLE_PREFIX" value="phpbb_"/>
</php> </php>
</phpunit> </phpunit>