-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphpunit.xml.dist
23 lines (23 loc) · 1.05 KB
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendors/autoload.php">
<php>
<ini name="memory_limit" value="-1"/>
</php>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".ctp">app/Plugin/PluginManager</directory>
<directory suffix=".php">app/Plugin/PluginManager</directory>
<exclude>
<directory suffix=".php">app/Plugin/PluginManager/Config/Migration</directory>
<directory suffix=".php">app/Plugin/PluginManager/Config/Schema</directory>
<directory suffix=".php">app/Plugin/PluginManager/Test/Case</directory>
<directory suffix=".php">app/Plugin/PluginManager/Test/Fixture</directory>
<directory suffix=".php">app/Plugin/PluginManager/TestSuite</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="build/logs/clover.xml"/>
<log type="coverage-text" target="build/logs/covarage.txt"/>
</logging>
</phpunit>