-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Robin Appelman <[email protected]>
- Loading branch information
1 parent
1fee962
commit 65e8c45
Showing
8 changed files
with
336 additions
and
473 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"config": { | ||
"platform": { | ||
"php": "8.1" | ||
"php": "8.0" | ||
}, | ||
"allow-plugins": { | ||
"bamarni/composer-bin-plugin": true | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,18 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
- SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors | ||
- SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors | ||
- SPDX-License-Identifier: AGPL-3.0-or-later | ||
--> | ||
<phpunit bootstrap="bootstrap.php" | ||
timeoutForSmallTests="900" | ||
timeoutForMediumTests="900" | ||
timeoutForLargeTests="900" | ||
convertDeprecationsToExceptions="true" | ||
> | ||
<testsuite name='Nextcloud - Notify Push App Tests'> | ||
<directory suffix='.php'>.</directory> | ||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
bootstrap="bootstrap.php" | ||
verbose="true" | ||
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.5/phpunit.xsd"> | ||
<testsuite name="unit"> | ||
<directory suffix="Test.php">./</directory> | ||
</testsuite> | ||
<filter> | ||
<whitelist> | ||
<directory suffix=".php">../</directory> | ||
<exclude> | ||
<directory suffix=".php">../tests | ||
</directory> | ||
</exclude> | ||
</whitelist> | ||
</filter> | ||
<coverage> | ||
<include> | ||
<directory suffix=".php">./tests/lib</directory> | ||
</include> | ||
</coverage> | ||
</phpunit> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{ | ||
"config": { | ||
"platform": { | ||
"php": "8.1" | ||
}, | ||
"sort-packages": true | ||
}, | ||
"require-dev": { | ||
"christophwurst/nextcloud_testing": "^1.0.0" | ||
} | ||
"config": { | ||
"platform": { | ||
"php": "8.0" | ||
}, | ||
"sort-packages": true | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^9.6.13" | ||
} | ||
} |
Oops, something went wrong.