0
0
Fork 0
mirror of https://github.com/salesagility/SuiteCRM.git synced 2025-01-11 11:58:24 +00:00
salesagility_SuiteCRM/tests/phpunit.xml.dist
Dillon-Brown bd7964996d Migrate PHPUnit schema for 9.5.x
Signed-off-by: Dillon-Brown <dillon.brown@salesagility.com>
2021-09-08 16:45:20 +01:00

47 lines
1.4 KiB
XML

<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
backupGlobals="true"
backupStaticAttributes="false"
colors="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
convertErrorsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
stopOnError="false"
bootstrap="bootstrap.php">
<testsuites>
<testsuite name="AllTests">
<directory>tests/</directory>
</testsuite>
</testsuites>
<coverage cacheDirectory="./_output"
includeUncoveredFiles="true"
processUncoveredFiles="true"
pathCoverage="false"
ignoreDeprecatedCodeUnits="true"
disableCodeCoverageIgnore="false">
<include>
<directory suffix=".php">../</directory>
</include>
<exclude>
<directory>../.git</directory>
<directory>../.github</directory>
<directory>../XTemplate</directory>
<directory>../cache</directory>
<directory>../vendor</directory>
<directory>../tests</directory>
</exclude>
</coverage>
<php>
<ini name="display_errors" value="true"/>
</php>
</phpunit>