http://www.perlmonks.org?node_id=582849


in reply to Become a CPAN Tester with CPAN::Reporter

You forgot to mention one thing: It is important that the cpan testers reports have the verbose test output. Otherwise, the authors will have a hard time interpreting the results and fixing their bugs. I have even heard a prominent CPAN contributor say that testers reports without verbose output are useless.

You can turn on verbose test output using the environment variable HARNESS_VERBOSE. After following xdg's steps, just run cpan as follows:

HARNESS_VERBOSE=1 cpan

Or on win32:

set HARNESS_VERBOSE=1 cpan

Best regards,
Steffen

Replies are listed 'Best First'.
Re^2: Become a CPAN Tester with CPAN::Reporter
by xdg (Monsignor) on Nov 08, 2006 at 15:09 UTC
    I have even heard a prominent CPAN contributor say that testers reports without verbose output are useless

    I'm a little surprised by this comment. Tests reports, even without verbosity, include the details of failing tests, such as its label, line number, and any diagnostic output.

    My own experience developing CPAN::Reporter and other modules is that almost any test report is helpful. The exceptions have been some issues with CPANPLUS where no details are provided, which I think had to do with Module::Build support. (I don't know if that has been addressed, and frankly, now that CPAN.pm supports Module::Build and does test reporting, I've stopped paying attention to CPANPLUS.)

    Nevertheless, verbose reporting is an interesting idea and I'll put it on the Todo list to add as a configuration option.

    -xdg

    Code written by xdg and posted on PerlMonks is public domain. It is provided as is with no warranties, express or implied, of any kind. Posted code may not have been tested. Use of posted code is at your own risk.