in reply to Silence CPAN Testers on obviously broken platforms?
Make sure Makefile.PL (or whatever build system you use) exits with zero status
E.g. When one needs a $UNIFY environmental variable for a module to work, add this in top of your Makefile.PL:
# Be kind to testers, not verbose if (exists $ENV{AUTOMATED_TESTING} and $ENV{AUTOMATED_TESTING}) { exists $ENV{UNIFY} or exit 0; }
Of course you can make the expression as complicated as you wish :)
Note that the CPAN Testers Reports will show "UNKNOWN" instead of "FAIL" and the matrix will show orange instead of red.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Silence CPAN Testers on obviously broken platforms?
by tinita (Parson) on Nov 19, 2012 at 13:27 UTC | |
by Anonymous Monk on Nov 19, 2012 at 15:46 UTC | |
by davido (Cardinal) on Nov 19, 2012 at 17:33 UTC | |
by Tux (Canon) on Nov 19, 2012 at 15:44 UTC |