RE: Devel::Cover better practice to identify uncovered files

2017-04-18 Thread Jason Pyeron
> -Original Message- > From: James E Keenan > Sent: Tuesday, April 18, 2017 22:28 > > On 04/18/2017 07:43 PM, Jason Pyeron wrote: > > Currently we are using this script to find files (line 48) > under the scripts directory and add them to the coverage repor

Devel::Cover better practice to identify uncovered files

2017-04-18 Thread Jason Pyeron
Currently we are using this script to find files (line 48) under the scripts directory and add them to the coverage report. After running the programs under test, the script is run: $ ./tests/script/cover-missing.pl load ingest 17 known covered file(s) found preprocess 132 uncovered file(s)

RE: Cevel::Cover missing lines?

2017-04-18 Thread Jason Pyeron
> -Original Message- > From: Paul Johnson > Sent: Tuesday, April 18, 2017 15:29 > > On Tue, Apr 18, 2017 at 12:32:57PM -0400, Jason Pyeron wrote: > > I am "require"ing a file but Devel::Cover is not logging > the statements, only the sub, use, and ev

Cevel::Cover missing lines?

2017-04-18 Thread Jason Pyeron
I am "require"ing a file but Devel::Cover is not logging the statements, only the sub, use, and eval portions. I tried a do(filename.pl) to no help. I tried adding -subs_only off (and on) to no effect. Any suggestions? (source can be found at

RE: Devel::Cover force adding unseen files - feedback requested.

2016-12-26 Thread Jason Pyeron
> -Original Message- > From: Tina Muller > Sent: Monday, December 26, 2016 07:04 > > Hi Jason, > > On Sun, 25 Dec 2016, Jason Pyeron wrote: > > > Coverage works great as part on continuous integration, > > until a new file is added and the uni