Skip Menu |

This queue is for tickets about the WebService-Uptrack CPAN distribution.

Report information
The Basics
Id: 108679
Status: open
Priority: 0/
Queue: WebService-Uptrack

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

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



Subject: perlcritic test fails
t/perlcritic.t either fails because a missing Test::Perl::Critic is not properly skipped (see http://www.cpantesters.org/cpan/report/d0261c90-33a1-11e5-ba3a-fe897c839d7e for a sample report) or some of the critic tests fail (sample report: http://www.cpantesters.org/cpan/report/468c1ea8-87e3-11e5-baaf-4426e0bfc7aa )
On 2015-11-10 12:40:56, SREZIC wrote: Show quoted text
> t/perlcritic.t either fails because a missing Test::Perl::Critic is > not properly skipped (see > http://www.cpantesters.org/cpan/report/d0261c90-33a1-11e5-ba3a- > fe897c839d7e for a sample report) or some of the critic tests fail > (sample report: http://www.cpantesters.org/cpan/report/468c1ea8-87e3- > 11e5-baaf-4426e0bfc7aa )
Please do not allow perlcritic tests to run for normal user installs. Since they run all critic policies that are installed on the user's machine, the outcome can be unpredictable, and they prevent installations unnecessarily. Either move them to xt/, or guard them with: plan skip_all => "These tests are for authors only!" unless $ENV{AUTHOR_TESTING} or $ENV{RELEASE_TESTING};