CodeIgniter4/phpunit.xml.dist

39 lines
1.4 KiB
Plaintext
Raw Normal View History

2015-08-28 23:08:36 -05:00
<?xml version="1.0" encoding="UTF-8"?>
2016-01-05 23:09:24 -06:00
<phpunit bootstrap="tests/_support/_bootstrap.php"
2017-02-07 07:20:56 +07:00
backupGlobals="true"
colors="true"
2015-08-28 23:08:36 -05:00
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false">
<testsuites>
<testsuite name="system">
<directory>./tests/system</directory>
<!-- <exclude>./tests/system/Database/Live</exclude> -->
2015-08-28 23:08:36 -05:00
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./system</directory>
2015-12-18 23:42:54 -06:00
<exclude>
<file>./system/bootstrap.php</file>
<file>./system/Commands/Sessions/Views/migration.tpl.php</file>
2015-12-18 23:42:54 -06:00
<file>./system/ComposerScripts.php</file>
<file>./system/Config/Routes.php</file>
<directory>./system/Debug/Toolbar/Views</directory>
<directory>./system/Pager/Views</directory>
2016-07-23 01:39:36 -07:00
<directory>./system/ThirdParty</directory>
<directory>./system/Validation/Views</directory>
2015-12-18 23:42:54 -06:00
</exclude>
</whitelist>
</filter>
2017-01-16 23:14:15 -06:00
<logging>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
2016-03-18 22:04:59 -05:00
</phpunit>