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

github.com/nextcloud/bookmarks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMarcel Klehr <mklehr@gmx.net>2020-03-31 19:53:00 +0300
committerMarcel Klehr <mklehr@gmx.net>2020-03-31 19:53:00 +0300
commit8ec4b12f7d6c033f89424adbe39c74808f84450b (patch)
treea0e0b8e5e85ffc22fc99080c0378ff9bed44e9ca /tests
parent7494ed0d84de9873c1b702dffa6b5895b4b02625 (diff)
parentef88b8c67af5958516ce09ccbdd9c5ddd6bd6df4 (diff)
Merge branch 'master' into feature/sharing-ui
Diffstat (limited to 'tests')
-rw-r--r--tests/phpunit.xml21
1 files changed, 16 insertions, 5 deletions
diff --git a/tests/phpunit.xml b/tests/phpunit.xml
index 3c33882d..95ec830e 100644
--- a/tests/phpunit.xml
+++ b/tests/phpunit.xml
@@ -1,12 +1,23 @@
<?xml version="1.0" encoding="utf-8" ?>
<phpunit bootstrap="bootstrap.php"
verbose="true"
+ colors="true"
timeoutForSmallTests="900"
timeoutForMediumTests="900"
- timeoutForLargeTests="900"
->
- <testsuite name='Bookmarks App Tests'>
- <directory suffix='Test.php'>.</directory>
+ timeoutForLargeTests="900">
+ <testsuite name='Bookmarks app tests'>
+ <directory suffix='Test.php'>.</directory>
</testsuite>
-</phpunit>
+ <!-- filters for code coverage -->
+ <filter>
+ <whitelist>
+ <directory suffix=".php">../</directory>
+ <exclude>
+ <directory suffix=".php">../l10n</directory>
+ <directory suffix=".php">../templates</directory>
+ <directory suffix=".php">../tests</directory>
+ </exclude>
+ </whitelist>
+ </filter>
+</phpunit> \ No newline at end of file