-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(phpunit): Update config to latest
Signed-off-by: Joas Schilling <[email protected]>
- Loading branch information
1 parent
ba2ad6a
commit 49fb7e1
Showing
3 changed files
with
16 additions
and
21 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
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"?> | ||
<phpunit bootstrap="bootstrap.php" | ||
verbose="true" | ||
convertDeprecationsToExceptions="true" | ||
timeoutForSmallTests="900" | ||
timeoutForMediumTests="900" | ||
timeoutForLargeTests="900" | ||
> | ||
<testsuite name='Call Summary Bot Tests'> | ||
<directory suffix='Test.php'>.</directory> | ||
</testsuite> | ||
<!-- filters for code coverage --> | ||
<filter> | ||
<whitelist> | ||
<directory suffix=".php">../../call_summary_bot/appinfo</directory> | ||
<directory suffix=".php">../../call_summary_bot/lib</directory> | ||
</whitelist> | ||
</filter> | ||
<logging> | ||
<!-- and this is where your report will be written --> | ||
<log type="coverage-clover" target="./clover.xml"/> | ||
</logging> | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" | ||
cacheDirectory=".phpunit.cache"> | ||
<testsuite name="Call Summary Bot Tests"> | ||
<directory>.</directory> | ||
</testsuite> | ||
<source> | ||
<include> | ||
<directory>../../call_summary_bot/appinfo</directory> | ||
<directory>../../call_summary_bot/lib</directory> | ||
</include> | ||
</source> | ||
</phpunit> | ||
|