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

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené Gieling <github@dartcafe.de>2020-11-30 22:28:25 +0300
committerGitHub <noreply@github.com>2020-11-30 22:28:25 +0300
commitd2eee9bd2b71361b7ad5db9cccf8003eadb7ad9d (patch)
treef28ab7eaf06d0b2d7d0570cb0291a1ce15d03fa0 /tests/phpunit.integration.xml
parentcccca2d1525500743493ad9e06e3f84838dec7d0 (diff)
use github CI and PHPUnit (#1257) (#1269)
* use github CI and PHPUnit (#1257) * CommentMapperTest * LogMapperTest * SubscriptionMapperTest * all mappers
Diffstat (limited to 'tests/phpunit.integration.xml')
-rw-r--r--tests/phpunit.integration.xml12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/phpunit.integration.xml b/tests/phpunit.integration.xml
new file mode 100644
index 00000000..e664e029
--- /dev/null
+++ b/tests/phpunit.integration.xml
@@ -0,0 +1,12 @@
+<phpunit bootstrap="bootstrap.php" colors="true">
+ <testsuites>
+ <testsuite name="integration-app">
+ <directory>./integration/app</directory>
+ </testsuite>
+ </testsuites>
+ <filter>
+ <whitelist>
+ <directory suffix=".php">./../lib</directory>
+ </whitelist>
+ </filter>
+</phpunit>