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

github.com/nextcloud/twofactor_totp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2021-01-19 17:33:49 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2021-01-19 19:57:19 +0300
commitba46ceb22645c7d145dbe8046e7af73319fca5ae (patch)
tree976715e801471778f8488f2830bc9948dabe2e92 /tests
parentd71e950c0a26645d36c59bb4c2fd3c5caff332c8 (diff)
Add php8 support
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'tests')
-rw-r--r--tests/phpunit.xml6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/phpunit.xml b/tests/phpunit.xml
index 894fc9f..959986b 100644
--- a/tests/phpunit.xml
+++ b/tests/phpunit.xml
@@ -1,5 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
-<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="bootstrap.php" verbose="true" timeoutForSmallTests="900" timeoutForMediumTests="900" timeoutForLargeTests="900" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
+<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ bootstrap="bootstrap.php"
+ verbose="true"
+ xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directory suffix=".php">../lib</directory>
@@ -10,6 +13,5 @@
</coverage>
<testsuite name="TOTP 2FA Provider">
<directory suffix="Test.php">.</directory>
- <exclude>./vendor</exclude>
</testsuite>
</phpunit>