Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/registration.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-07-29 18:46:38 +0300
committerJoas Schilling <coding@schilljs.com>2020-08-18 18:11:30 +0300
commit906b1f8db2b6254dd4f224eaf692b672251b8886 (patch)
tree43c93f25b29ada32863393489adc0efd3d0252ae
parentb5ccb3e1846d9e81b9e5f7ad137e67f1f8e1277d (diff)
Improve code coverage handling
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--.gitignore2
-rw-r--r--tests/phpunit.xml3
2 files changed, 4 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index 5f4186b..48cf206 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,5 @@
/.php_cs.cache
+/tests/clover.xml
+/tests/coverage-html
/tests/.phpunit.result.cache
/vendor
diff --git a/tests/phpunit.xml b/tests/phpunit.xml
index b833956..b437e68 100644
--- a/tests/phpunit.xml
+++ b/tests/phpunit.xml
@@ -9,7 +9,8 @@
<!-- filters for code coverage -->
<filter>
<whitelist>
- <directory suffix=".php">../</directory>
+ <directory suffix=".php">../../registration/appinfo</directory>
+ <directory suffix=".php">../../registration/lib</directory>
</whitelist>
</filter>
</phpunit>