1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-01-17 22:28:46 +01:00

[ticket/10723] Stop Travis running all tests on sqlite

Correct information so all tests don't run on sqlite

PHPBB3-10723
This commit is contained in:
Michael Cullum 2012-03-23 06:40:15 +00:00
parent 57eb50812f
commit 5bcdfe94dd
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>