Exclude specific paths from the Devel :: Cover report

There are many shared libraries in our project that are located on a specific path (but not the default in Perl @INC).

By default, cover -t will report coverage of both tested modules and our common modules. I only need the coverage numbers of the modules that I am developing.

I tried adding the path to -ignore_re, but that didn't help.

So the question is: is there a way to exclude the module path from the coverage test?

+6
source share

Source: https://habr.com/ru/post/910501/


All Articles