aboutsummaryrefslogtreecommitdiffstats
path: root/phpunit.xml.dist
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-05-03 10:28:15 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-05-03 10:28:15 +0200
commit3b823465db93cf525249d00a412d5417b3216b83 (patch)
treef2ec484d4aec0408505e3ab4881582b3ffe33949 /phpunit.xml.dist
parent386aac3a85313804d96ba7ff90a949e0d475a1da (diff)
parent436e388b87c39d778e5996d3ab0f0761fffe5e23 (diff)
downloadforums-3b823465db93cf525249d00a412d5417b3216b83.tar
forums-3b823465db93cf525249d00a412d5417b3216b83.tar.gz
forums-3b823465db93cf525249d00a412d5417b3216b83.tar.bz2
forums-3b823465db93cf525249d00a412d5417b3216b83.tar.xz
forums-3b823465db93cf525249d00a412d5417b3216b83.zip
Merge branch 'develop-olympus' into develop-ascraeus
* develop-olympus: [ticket/12485] Broken tests due to absolute exclude Conflicts: .travis.yml phpunit.xml.all phpunit.xml.dist phpunit.xml.functional
Diffstat (limited to 'phpunit.xml.dist')
-rw-r--r--phpunit.xml.dist9
1 files changed, 5 insertions, 4 deletions
diff --git a/phpunit.xml.dist b/phpunit.xml.dist
index 700af8b2b2..dd039fb567 100644
--- a/phpunit.xml.dist
+++ b/phpunit.xml.dist
@@ -13,11 +13,12 @@
>
<testsuites>
<testsuite name="phpBB Test Suite">
- <directory suffix="_test.php">./tests/</directory>
- <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 Lint Test">
- <file>tests/lint_test.php</file>
+ <file>./tests/lint_test.php</file>
</testsuite>
</testsuites>
@@ -30,7 +31,7 @@
<filter>
<blacklist>
- <directory>./tests/</directory>
+ <directory>./tests</directory>
</blacklist>
<whitelist>
<directory suffix=".php">./phpBB/includes/</directory>