mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
30 lines
799 B
XML
30 lines
799 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<phpunit
|
|
backupGlobals = "false"
|
|
backupStaticAttributes = "false"
|
|
colors = "true"
|
|
convertErrorsToExceptions = "true"
|
|
convertNoticesToExceptions = "true"
|
|
convertWarningsToExceptions = "true"
|
|
processIsolation = "false"
|
|
stopOnFailure = "false"
|
|
bootstrap = "vendor/autoload.php"
|
|
>
|
|
|
|
<testsuites>
|
|
<testsuite name="Shortcode">
|
|
<directory>./tests/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<logging>
|
|
<log type="coverage-html" target="coverage" lowUpperBound="50" highLowerBound="90"/>
|
|
<log type="coverage-clover" target="coverage.xml"/>
|
|
</logging>
|
|
|
|
<filter>
|
|
<whitelist>
|
|
<directory>./src</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|