Skip to content

Instantly share code, notes, and snippets.

@da-n
Created September 21, 2016 08:23
Show Gist options
  • Save da-n/c3645c1160592278b530629cdd90bd6a to your computer and use it in GitHub Desktop.
Save da-n/c3645c1160592278b530629cdd90bd6a to your computer and use it in GitHub Desktop.
PHPUnit exclude files/directories
<?xml version="1.0" encoding="utf-8"?>
<phpunit>
<filter>
<whitelist>
<directory suffix=".php">../</directory>
<exclude>
<file>../ext_emconf.php</file>
<directory suffix=".php">../tests</directory>
</exclude>
</whitelist>
</filter>
</phpunit>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment