Skip to content

Instantly share code, notes, and snippets.

@Yennick
Forked from lilbro1062000/phpunit.xml
Created February 22, 2016 15:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Yennick/206291ea1c20cdf46a17 to your computer and use it in GitHub Desktop.
Save Yennick/206291ea1c20cdf46a17 to your computer and use it in GitHub Desktop.
cakephp phpunit.xml
<phpunit>
<filter>
<!-- Exclude directories for coverrage. -->
<blacklist>
<directory suffix=".php">bin</directory>
<directory suffix=".php">cakephp</directory>
<directory suffix=".php">*/Config/Migration</directory>
<directory suffix=".php">*/Config/Schema</directory>
<directory suffix=".php">*/Console/Templates</directory>
<directory suffix=".php">*/Lib</directory>
<directory suffix=".php">*/Plugin</directory>
<directory suffix=".php">*/Test</directory>
<directory suffix=".php">*/tmp</directory>
<directory suffix=".php">*/Vendor</directory>
<directory suffix=".php">*/webroot</directory>
</blacklist>
</filter>
</phpunit>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment