Fix phpunit filters

Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
This commit is contained in:
John Molakvoæ (skjnldsv) 2020-03-31 17:01:14 +02:00
parent 80959b0ea8
commit 2588b07ac6
No known key found for this signature in database
GPG Key ID: 60C25B8C072916CF
1 changed files with 16 additions and 5 deletions

View File

@ -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>