fair-plugin/phpunit.xml.dist
Ipstenu (Mika Epstein) c569ddf212
Release 1.4.1 (#515)
Signed-off-by: Kaspars Dambis <hi@kaspars.net>
Signed-off-by: Chuck Adams <chaz@chaz.works>
Signed-off-by: Ipstenu (Mika Epstein) <Ipstenu@users.noreply.github.com>
Signed-off-by: Carrie Dils <cdils@users.noreply.github.com>
Signed-off-by: cdils <cdils@users.noreply.github.com>
Co-authored-by: Kaspars Dambis <hi@kaspars.net>
Co-authored-by: Namith Jawahar <48271037+namithj@users.noreply.github.com>
Co-authored-by: Andy Fragen <andy@thefragens.com>
Co-authored-by: Chuck Adams <chaz@chaz.works>
Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com>
Co-authored-by: Carrie Dils <cdils@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-07-14 09:33:18 -05:00

35 lines
1.1 KiB
XML

<?xml version="1.0"?>
<phpunit
bootstrap="tests/phpunit/bootstrap.php"
backupGlobals="false"
colors="true"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutOutputDuringTests="true"
convertErrorsToExceptions="true"
convertWarningsToExceptions="true"
convertNoticesToExceptions="true"
convertDeprecationsToExceptions="true"
cacheResultFile="tests/phpunit/cache/.phpunit.default.cache"
>
<testsuites>
<testsuite name="default">
<directory suffix="Test.php">tests/phpunit/tests/</directory>
<exclude>tests/phpunit/tests/SampleTest.php</exclude>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>ms-required</group>
</exclude>
</groups>
<coverage includeUncoveredFiles="true" processUncoveredFiles="false" pathCoverage="false" cacheDirectory="tests/phpunit/cache">
<include>
<directory suffix=".php">inc</directory>
</include>
<report>
<text outputFile="php://stdout" showOnlySummary="true"/>
<html outputDirectory="tests/phpunit/coverage/html/single-site"/>
<php outputFile="tests/phpunit/coverage/php/single-site.php"/>
</report>
</coverage>
</phpunit>