-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Closed
Labels
feature/configuration/xmlfeature/test-runnerCLI test runnerCLI test runnertype/enhancementA new idea that should be implementedA new idea that should be implemented
Description
Hello,
in the phpunit.xml file I would like to exclude all directories from the coverage which have e.g. Foo
in them. Currently, there is no way, as phpunit/php-file-iterator
uses glob
which only supports wildcard like *
and therefore do not allow such things.
However, I discovered, that two weeks ago @nicDamours created a PR and an issue. I hope that this lands in PHPUnit soon.
<source>
<exclude>
<directory>**/Foo/**</directory>
</exclude>
</source>
nicDamoursdi-dmosher
Metadata
Metadata
Assignees
Labels
feature/configuration/xmlfeature/test-runnerCLI test runnerCLI test runnertype/enhancementA new idea that should be implementedA new idea that should be implemented