I have just set up CloverPHP into my Jenkins job.
I am using PHPUnit to generate the clover report and it seems to all be working apart from the coverage report which is showing the file
/usr/share/php/SymfonyComponents/YAML/sfYamlInline.php
as part of the report. I'm not sure where this is coming from, my guess is that PHPUnit or XDebug is including it. Obviously this is not part of my own code base so I am not interested in it. It is affecting the overall metrics produced by my project. Is there a way of excluding this file from the report?
Many thanks, ns
Edit
The answer is to use a phpunit xml configuration file which can contain a filter blacklist. I will answer my question properly in 6 hours (stackoverflow is making me wait 8 hours before answering my question!)