On Sun, Mar 06, 2005 at 09:54:44PM +0100, S?bastien Aperghis-Tramoni wrote: > Instead of running the code on one server, where it's a problem, why > not running on machines where all prereq modules are already installed, > i.e. on machines where one *wants* to install the module ? Let's add an > option to CPANPLUS so that it run Devel::Cover on any module that it > has to install and include the coverage information in the test report.
Not a bad idea. Issues I can think of... * Devel::Cover is very slow, I don't know if you'd want it on all the time like test reporting. * As mentioned, Devel::Cover is not perfect and often screws up test results, threading particularly is a problem, so that it will give false negatives. This is a common problem, one example is Test::More.