Open
Description
Although the use of @covers
and @coversNothing
is really useful for generating good coverage reports, there are also times when we want to ignore those settings. For example, i may wish to see exactly what my integration tests are covering.
My proposal would be to add a command line flag to phpunit, for example --ignore-covers
or something like that. Which would cause @covers
and @coversNothing
to be ignored when calculating the code coverage.
Slightly related to: infection/infection#88 (comment)