in reply to Running devel::cover recursively on directory with .t files

I guess you'll need to load Devel::Cover for the tests you run and not for the test harness you're using. Test::Harness says that $ENV{HARNESS_PERL_SWITCHES} is the way to go. So either set the $switches variable that Test::Harness alludes to exporting, or set HARNESS_PERL_SWITCHES=-MDevel::Cover before you run the harness.

Replies are listed 'Best First'.
Re^2: Running devel::cover recursively on directory with .t files
by david2008 (Scribe) on Jun 02, 2013 at 11:20 UTC
    Hi,

    I switched to test:harness and set the environment variable and it worked great.

    Thanks, David