mirror of
https://github.com/nextcloud/mail.git
synced 2026-01-31 08:07:30 +00:00
Bumps [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) from 9.2.6 to 9.5.0. - [Release notes](https://github.com/sebastianbergmann/phpunit/releases) - [Changelog](https://github.com/sebastianbergmann/phpunit/blob/master/ChangeLog-9.5.md) - [Commits](https://github.com/sebastianbergmann/phpunit/compare/9.2.6...9.5.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
18 lines
702 B
XML
18 lines
702 B
XML
<?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" cacheResult="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
|
|
<coverage>
|
|
<include>
|
|
<directory suffix=".php">../lib</directory>
|
|
</include>
|
|
<exclude>
|
|
<directory suffix=".php">../mail/lib/Vendor</directory>
|
|
</exclude>
|
|
<report>
|
|
<clover outputFile="./clover.unit.xml"/>
|
|
</report>
|
|
</coverage>
|
|
<testsuite name="Mail app tests">
|
|
<directory suffix="Test.php">Unit</directory>
|
|
</testsuite>
|
|
</phpunit>
|