Created
September 21, 2016 08:23
-
-
Save da-n/c3645c1160592278b530629cdd90bd6a to your computer and use it in GitHub Desktop.
PHPUnit exclude files/directories
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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