diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-06-03 00:59:04 +0200 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-06-03 01:01:28 +0200 |
commit | 17d83cc17fb85ee38150b1b785907d4ac21f7936 (patch) | |
tree | 00352d890c862f4ce034071321386fb974edc92f /tests/phpunit-autotest.xml | |
parent | 2a81813e44e7530c581b44db6d58d88bd422c511 (diff) | |
download | nextcloud-server-17d83cc17fb85ee38150b1b785907d4ac21f7936.tar.gz nextcloud-server-17d83cc17fb85ee38150b1b785907d4ac21f7936.zip |
Fixing code coverage analysis
Diffstat (limited to 'tests/phpunit-autotest.xml')
-rw-r--r-- | tests/phpunit-autotest.xml | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/tests/phpunit-autotest.xml b/tests/phpunit-autotest.xml index 23cd123edc6..25dfc64cfeb 100644 --- a/tests/phpunit-autotest.xml +++ b/tests/phpunit-autotest.xml @@ -5,10 +5,14 @@ <file>apps.php</file> </testsuite> <!-- filters for code coverage --> - <whitelist processUncoveredFilesFromWhitelist="true"> - <directory suffix=".php">..</directory> - <exclude> - <directory suffix=".php">../3rdparty</directory> - </exclude> - </whitelist> + <filter> + <!-- whitelist processUncoveredFilesFromWhitelist="true" --> + <whitelist> + <directory suffix=".php">..</directory> + <exclude> + <directory suffix=".php">../3rdparty</directory> + <directory suffix=".php">../lib/MDB2</directory> + </exclude> + </whitelist> + </filter> </phpunit> |