diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2016-10-05 14:49:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-05 14:49:13 +0200 |
commit | 815616fb2c570b6923124b9af1292f682f398b28 (patch) | |
tree | 3e810ed3d3dd039cc92b170698a0b06a65b4c0e9 | |
parent | f2b1a1781c7b33b71d16f4549f8745498420aea6 (diff) | |
parent | 408c562427205dde07a7819707e3ac7887d7181c (diff) | |
download | nextcloud-server-815616fb2c570b6923124b9af1292f682f398b28.tar.gz nextcloud-server-815616fb2c570b6923124b9af1292f682f398b28.zip |
Merge pull request #1624 from nextcloud/exclude_coverage_dirs
Exclude tests and composer dir from coverage
-rw-r--r-- | tests/phpunit-autotest.xml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/phpunit-autotest.xml b/tests/phpunit-autotest.xml index 301f63a375d..3a82a56ebbf 100644 --- a/tests/phpunit-autotest.xml +++ b/tests/phpunit-autotest.xml @@ -29,10 +29,15 @@ <directory suffix=".php">../apps/files_trashbin/tests</directory> <directory suffix=".php">../apps/files_versions/tests</directory> <directory suffix=".php">../apps/provisioning_api/tests</directory> + <directory suffix=".php">../apps/systemtags/tests</directory> + <directory suffix=".php">../apps/theming/tests</directory> + <directory suffix=".php">../apps/twofactor_backupcodes/tests</directory> <directory suffix=".php">../apps/updatenotification/tests</directory> <directory suffix=".php">../apps/user_ldap/tests</directory> + <directory suffix=".php">../apps/workflowengine/tests</directory> <directory suffix=".php">../tests</directory> <directory suffix=".php">../build</directory> + <directory suffix=".php">../lib/composer</directory> </exclude> </whitelist> </filter> |