http://qs321.pair.com?node_id=11107021


in reply to Re: Coverage report
in thread Coverage report

Thank you for your reply. I'll try the ignore flag.
About the merge part, I'll try to explain myself better.
I have a tool which runs multi unitest.
Each one of them creats a coverage report.
I want somehow to "merge" those reports into one main report.
I feel like it is a bit novice question, but I'm not sure that I fully understand the coverge idea.
How can I "merge those reports into one main report so It will look like I ran one unitest and got the report?

Replies are listed 'Best First'.
Re^3: Coverage report
by jcb (Parson) on Oct 03, 2019 at 22:15 UTC

    Devel::Cover accumulates all of its results in one database. I use PERL5OPT=-MDevel::Cover prove -l for development tests on a pure-Perl distribution I am writing, followed by simply cover to get the unified report.