summaryrefslogtreecommitdiffstats
path: root/phpunit.xml
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2019-01-23 10:31:27 +0100
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2019-01-23 12:47:27 +0100
commitb299531e405e45834adbd97a41a8c5bc9743bf3a (patch)
tree04cc4ff113d5b634831c4d8975e04bae96e66825 /phpunit.xml
parented31fc354473d48343df5a30e84610f1b680afe4 (diff)
Travis bump
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'phpunit.xml')
-rw-r--r--phpunit.xml29
1 files changed, 22 insertions, 7 deletions
diff --git a/phpunit.xml b/phpunit.xml
index 5c67f0a6..9c1553a4 100644
--- a/phpunit.xml
+++ b/phpunit.xml
@@ -1,7 +1,22 @@
-<phpunit bootstrap="tests/bootstrap.php" colors="true">
- <testsuites>
- <testsuite name="unit">
- <directory>./tests/unit</directory>
- </testsuite>
- </testsuites>
-</phpunit>
+<?xml version="1.0" encoding="utf-8" ?>
+<phpunit bootstrap="tests/bootstrap.php"
+ verbose="true"
+ colors="true"
+ timeoutForSmallTests="900"
+ timeoutForMediumTests="900"
+ timeoutForLargeTests="900">
+ <testsuite name='Contacts app tests'>
+ <directory>./tests/unit</directory>
+ </testsuite>
+ <!-- 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