mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-04 14:47:52 +02:00
There is no php-fpm for PHP 5.3.3. Make sure PHP version is at least 5.3.19, which is what 5.3 is currently aliased to. PHPBB3-11337
43 lines
1.4 KiB
XML
43 lines
1.4 KiB
XML
<?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"
|
|
verbose="true"
|
|
bootstrap="../tests/bootstrap.php">
|
|
<testsuites>
|
|
<testsuite name="phpBB Test Suite">
|
|
<directory suffix="_test.php">../tests/</directory>
|
|
<exclude>tests/functional</exclude>
|
|
</testsuite>
|
|
<testsuite name="phpBB Functional Tests">
|
|
<directory suffix="_test.php" phpVersion="5.3.19" phpVersionOperator=">=">../tests/functional</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<groups>
|
|
<exclude>
|
|
<group>slow</group>
|
|
</exclude>
|
|
</groups>
|
|
|
|
<php>
|
|
<!-- "Real" test database -->
|
|
<!-- uncomment, otherwise sqlite memory runs -->
|
|
<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_"/>
|
|
<server name="PHPBB_FUNCTIONAL_URL" value="http://localhost/" />
|
|
</php>
|
|
</phpunit>
|