aboutsummaryrefslogtreecommitdiffstats
path: root/travis/phpunit-postgres-travis.xml
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-05-03 10:19:52 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-05-03 10:19:52 +0200
commit436e388b87c39d778e5996d3ab0f0761fffe5e23 (patch)
tree41fd466903f59f47d4e0f849f9735d4c43cb5a72 /travis/phpunit-postgres-travis.xml
parentaf7ec71967102a0ec591ad4f0da704b58a44fe8b (diff)
parent3dee1db2603c84b53c9fe93b5da95d75846878d6 (diff)
downloadforums-436e388b87c39d778e5996d3ab0f0761fffe5e23.tar
forums-436e388b87c39d778e5996d3ab0f0761fffe5e23.tar.gz
forums-436e388b87c39d778e5996d3ab0f0761fffe5e23.tar.bz2
forums-436e388b87c39d778e5996d3ab0f0761fffe5e23.tar.xz
forums-436e388b87c39d778e5996d3ab0f0761fffe5e23.zip
Merge pull request #2396 from Nicofuma/ticket/12485
[ticket/12485] Broken tests due to absolute 'exclude' * Nicofuma/ticket/12485: [ticket/12485] Broken tests due to absolute exclude
Diffstat (limited to 'travis/phpunit-postgres-travis.xml')
-rw-r--r--travis/phpunit-postgres-travis.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/travis/phpunit-postgres-travis.xml b/travis/phpunit-postgres-travis.xml
index aa829f4d30..b4af7c5765 100644
--- a/travis/phpunit-postgres-travis.xml
+++ b/travis/phpunit-postgres-travis.xml
@@ -13,9 +13,9 @@
bootstrap="../tests/bootstrap.php">
<testsuites>
<testsuite name="phpBB Test Suite">
- <directory suffix="_test.php">../tests/</directory>
- <exclude>tests/functional</exclude>
- <exclude>tests/lint_test.php</exclude>
+ <directory suffix="_test.php">../tests</directory>
+ <exclude>../tests/functional</exclude>
+ <exclude>../tests/lint_test.php</exclude>
</testsuite>
<testsuite name="phpBB Functional Tests">
<directory suffix="_test.php" phpVersion="5.3.19" phpVersionOperator=">=">../tests/functional</directory>