Skip to content

Commit 1960629

Browse files
committed
[ticket/10492] Skip functional tests on PHP 5.2 on travis
PHPBB3-10492
1 parent b0e273b commit 1960629

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

travis/phpunit-mysql-travis.xml

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@
1313
<testsuites>
1414
<testsuite name="phpBB Test Suite">
1515
<directory suffix="_test.php">../tests/</directory>
16+
<exclude>tests/functional</exclude>
17+
</testsuite>
18+
<testsuite name="phpBB Functional Tests">
19+
<directory suffix="_test.php" phpVersion="5.3.0" phpVersionOperator=">=">../tests/functional</directory>
1620
</testsuite>
1721
</testsuites>
1822

travis/phpunit-postgres-travis.xml

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@
1313
<testsuites>
1414
<testsuite name="phpBB Test Suite">
1515
<directory suffix="_test.php">../tests/</directory>
16+
<exclude>tests/functional</exclude>
17+
</testsuite>
18+
<testsuite name="phpBB Functional Tests">
19+
<directory suffix="_test.php" phpVersion="5.3.0" phpVersionOperator=">=">../tests/functional</directory>
1620
</testsuite>
1721
</testsuites>
1822

0 commit comments

Comments
 (0)