On 2015-11-28 21:38:39, brandon.barker@cornell.edu wrote:
[...]
Show quoted text> Is it possible to ask CPAN testers to not run tests if a service is
> determined to be down, and wait until the next run?
No, I am not aware of such a mechanism. If all test scripts are skipped (e.g. using plan skip_all => ...), then the overall result is NOTESTS which would yield a test report with state UNKNOWN. This is visible distinguishable on the CPAN Testers Matrix page. Usually a version of a distribution is tested only once per perl version, so on most smoker setups there would be no other run for this distribution version.
Another possibility to check for unusual conditions during the test runs would be by using CPAN::Testers::ParseReport. This module can download test reports for a distribution and parse it for some predefined parameters, and it's also possible to search for custom strings. Or, as the reports are locally cached after download, it's also possible to do a simple "grep" on the files.
Regards,
Slaven