Skip Menu |

This queue is for tickets about the Array-GroupBy CPAN distribution.

Report information
The Basics
Id: 106786
Status: open
Priority: 0/
Queue: Array-GroupBy

People
Owner: Nobody in particular
Requestors: SREZIC [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: v0.0.4
Fixed in: (no value)



Subject: perlcritic test fails
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.
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};