aboutsummaryrefslogtreecommitdiffstats
path: root/travis/phpunit-mysql-travis.xml
diff options
context:
space:
mode:
Diffstat (limited to 'travis/phpunit-mysql-travis.xml')
-rw-r--r--travis/phpunit-mysql-travis.xml28
1 files changed, 28 insertions, 0 deletions
diff --git a/travis/phpunit-mysql-travis.xml b/travis/phpunit-mysql-travis.xml
new file mode 100644
index 0000000000..a849f50136
--- /dev/null
+++ b/travis/phpunit-mysql-travis.xml
@@ -0,0 +1,28 @@
+<?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>
+ <const name="dbms" value="mysqli"/>
+ <const name="dbhost" value="0.0.0.0" />
+ <const name="dbport" value="3306" />
+ <const name="dbname" value="phpbb_tests" />
+ <const name="dbuser" value="root" />
+ <const name="dbpasswd" value="" />
+ <const name="table_prefix" value="phpbb_"/>
+ </php>
+</phpunit>