1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-10-12 15:34:31 +02:00

Merge pull request #6865 from marc1706/ticket/17555-master

[ticket/17555] Adapt windows runner tests to prevent random failures -- master versions
This commit is contained in:
Marc Alexander
2025-09-29 22:21:57 +02:00
committed by GitHub

View File

@@ -11,43 +11,43 @@
timeoutForSmallTests="60" timeoutForSmallTests="60"
timeoutForMediumTests="300" timeoutForMediumTests="300"
timeoutForLargeTests="600"> timeoutForLargeTests="600">
<testsuites> <testsuites>
<testsuite name="phpBB Test Suite"> <testsuite name="phpBB Test Suite">
<directory suffix="_test.php">../tests</directory> <directory suffix="_test.php">../tests</directory>
<exclude>../tests/functional</exclude> <exclude>../tests/functional</exclude>
<exclude>../tests/lint_test.php</exclude> <exclude>../tests/lint_test.php</exclude>
</testsuite> </testsuite>
<testsuite name="phpBB Functional Tests"> <testsuite name="phpBB Functional Tests">
<directory suffix="_test.php">../tests/functional</directory> <directory suffix="_test.php">../tests/functional</directory>
</testsuite> </testsuite>
</testsuites> </testsuites>
<groups> <groups>
<exclude> <exclude>
<group>slow</group> <group>slow</group>
</exclude> </exclude>
</groups> </groups>
<source restrictDeprecations="true"> <source restrictDeprecations="true">
<include> <include>
<directory suffix=".php">../phpBB/</directory> <directory suffix=".php">../phpBB/</directory>
<directory suffix=".php">../tests/</directory> <directory suffix=".php">../tests/</directory>
</include> </include>
<exclude> <exclude>
<directory suffix=".php">../phpBB/vendor/</directory> <directory suffix=".php">../phpBB/vendor/</directory>
<directory suffix=".php">../phpBB/cache/</directory> <directory suffix=".php">../phpBB/cache/</directory>
<directory suffix=".php">../phpBB/develop/</directory> <directory suffix=".php">../phpBB/develop/</directory>
<directory suffix=".php">../phpBB/store/</directory> <directory suffix=".php">../phpBB/store/</directory>
</exclude> </exclude>
</source> </source>
<php> <php>
<server name="PHPBB_TEST_DBMS" value="phpbb\db\driver\postgres"/> <server name="PHPBB_TEST_DBMS" value="phpbb\db\driver\postgres"/>
<server name="PHPBB_TEST_DBHOST" value="localhost"/> <server name="PHPBB_TEST_DBHOST" value="localhost"/>
<server name="PHPBB_TEST_DBPORT" value="5432"/> <server name="PHPBB_TEST_DBPORT" value="5432"/>
<server name="PHPBB_TEST_DBNAME" value="phpbb_tests"/> <server name="PHPBB_TEST_DBNAME" value="phpbb_tests"/>
<server name="PHPBB_TEST_DBUSER" value="postgres"/> <server name="PHPBB_TEST_DBUSER" value="postgres"/>
<server name="PHPBB_TEST_DBPASSWD" value="root"/> <server name="PHPBB_TEST_DBPASSWD" value="root"/>
<server name="PHPBB_TEST_REDIS_HOST" value="localhost"/> <server name="PHPBB_TEST_REDIS_HOST" value="localhost"/>
<server name="PHPBB_TEST_MEMCACHED_HOST" value="localhost"/> <server name="PHPBB_TEST_MEMCACHED_HOST" value="localhost"/>
<server name="PHPBB_TEST_TABLE_PREFIX" value="phpbb_"/> <server name="PHPBB_TEST_TABLE_PREFIX" value="phpbb_"/>
<server name="PHPBB_FUNCTIONAL_URL" value="http://phpbb.test/"/> <server name="PHPBB_FUNCTIONAL_URL" value="http://phpbb.test/"/>
</php> </php>
</phpunit> </phpunit>