On 2015-08-30 22:41:30, SREZIC wrote:
Show quoted text> See subject. Most (all?) failures seen here
http://fast-
> matrix.cpantesters.org/?dist=Array-GroupBy%200.0.4 are probably caused
> by the failing perlcritic test.
Please don't allow critic tests to run during normal user installations. Not only do they make tests fail unnecessarily, Perl::Critic runs whatever policy modules happen to be installed locally, which may include things that would fail for your distribution.
Either move the test to xt/, or guard it with:
plan skip_all => "These tests are for authors only!" unless $ENV{AUTHOR_TESTING} or $ENV{RELEASE_TESTING};