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


in reply to Reporting test failures within cron

I am running these tests within cron
Ideally, I would like cron to only send mail if any tests fail.

cron only sends mail when output is generated. What you want is that your tests be silent if everything goes ok (ie: change your print statements or redirect STDOUT) and direct error messages to STDERR. That way, you can control whether you want all the output (by not redirecting STDOUT) or only errors (ideally none -> no output -> no mail from cron).

--
David Serrano

Replies are listed 'Best First'.
Re^2: Reporting test failures within cron
by tomhukins (Curate) on Sep 13, 2005 at 12:40 UTC
    That's true, but as I'm using Test::WWW::Mechanize with Test::More I don't output anything myself directly: the testing tools do this for me.