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

github.com/nextcloud/jsxc.nextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsualko <klaus@jsxc.org>2020-06-30 15:53:20 +0300
committersualko <klaus@jsxc.org>2020-06-30 15:53:20 +0300
commitbce9f1900271a9af7ba2fcac30c12f2ea37c2b64 (patch)
tree822750b67829d835397c75129e5f026d59099cd9 /phpunit.xml
parentc083263a500ae1664377d94b38528e7c10e570f2 (diff)
test: fix integration tests
Diffstat (limited to 'phpunit.xml')
-rw-r--r--phpunit.xml14
1 files changed, 2 insertions, 12 deletions
diff --git a/phpunit.xml b/phpunit.xml
index b6bced8..09b416d 100644
--- a/phpunit.xml
+++ b/phpunit.xml
@@ -2,26 +2,16 @@
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
+ colors="true"
>
<testsuites>
<testsuite name="unit">
- <directory>./tests/unit</directory>
+ <directory>tests/unit</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">lib</directory>
- <exclude>
- <directory suffix=".php">lib/ContactsMenu</directory>
- <directory suffix=".php">lib/db</directory>
- <!-- The following three files are tested in the integration test suite -->
- <file>lib/ilock.php</file>
- <file>lib/memlock.php</file>
- <file>lib/dblock.php</file>
- <!-- The following two files are simple wrappers around other code -->
- <file>lib/command/refreshroster.php</file>
- <file>lib/Migration/RefreshRoster.php</file>
- </exclude>
</whitelist>
</filter>
</phpunit>