mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2025-01-11 11:58:24 +00:00
bd7964996d
Signed-off-by: Dillon-Brown <dillon.brown@salesagility.com>
47 lines
1.4 KiB
XML
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>
|