-
Notifications
You must be signed in to change notification settings - Fork 441
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12037 from nextcloud/techdebt/noid/phpunit-10.5
deps(CI): Update to PHPUnit10
- Loading branch information
Showing
8 changed files
with
1,652 additions
and
1,786 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
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
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
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,27 +1,20 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<phpunit bootstrap="bootstrap.php" | ||
verbose="true" | ||
convertDeprecationsToExceptions="true" | ||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
bootstrap="bootstrap.php" | ||
timeoutForSmallTests="900" | ||
timeoutForMediumTests="900" | ||
timeoutForLargeTests="900" | ||
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.6/phpunit.xsd" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
> | ||
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" | ||
cacheDirectory=".phpunit.result.cache"> | ||
<testsuite name="Talk App Tests"> | ||
<directory suffix="Test.php">.</directory> | ||
<directory>.</directory> | ||
</testsuite> | ||
<coverage> | ||
<!-- filters for code coverage --> | ||
<include> | ||
<directory suffix=".php">../../../spreed/appinfo</directory> | ||
<directory suffix=".php">../../../spreed/lib</directory> | ||
</include> | ||
<report> | ||
<!-- and this is where your report will be written --> | ||
<clover outputFile="./clover.xml"/> | ||
</report> | ||
</coverage> | ||
<logging> | ||
</logging> | ||
<source> | ||
<include> | ||
<directory>../../../spreed/appinfo</directory> | ||
<directory>../../../spreed/lib</directory> | ||
</include> | ||
</source> | ||
</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,7 +1,7 @@ | ||
{ | ||
"config": { | ||
"platform": { | ||
"php": "8.0" | ||
"php": "8.1" | ||
}, | ||
"sort-packages": true | ||
}, | ||
|
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.0" | ||
"php": "8.1" | ||
}, | ||
"sort-packages": true | ||
}, | ||
|
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.0" | ||
"php": "8.1" | ||
}, | ||
"sort-packages": true | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^9.5" | ||
"phpunit/phpunit": "^10.5" | ||
} | ||
} |
Oops, something went wrong.