Skip Menu |

This queue is for tickets about the Catalyst-View-Reproxy CPAN distribution.

Report information
The Basics
Id: 115266
Status: open
Priority: 0/
Queue: Catalyst-View-Reproxy

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

Bug Information
Severity: (no value)
Broken in: 0.05
Fixed in: (no value)



Subject: pod coverage test fails on some systems
Test fail looks like this: ... # Failed test (inc/Test/Pod/Coverage.pm at line 125) # Coverage for Catalyst::View::Reproxy is 85.7%, with 1 naked subroutine: # O_RDONLY # Looks like you failed 1 test of 2. t/pod-coverage.t ........... Dubious, test returned 1 (wstat 256, 0x100) Failed 1/2 subtests ... See here for an overview: http://analysis.cpantesters.org/reports_by_field?distv=Catalyst-View-Reproxy-0.05;field=fail%3At%2Fpod-coverage.t
On 2016-06-11 04:01:19, SREZIC wrote: Show quoted text
> Test fail looks like this: > > ... > # Failed test (inc/Test/Pod/Coverage.pm at line 125) > # Coverage for Catalyst::View::Reproxy is 85.7%, with 1 naked > subroutine: > # O_RDONLY > # Looks like you failed 1 test of 2. > t/pod-coverage.t ........... > Dubious, test returned 1 (wstat 256, 0x100) > Failed 1/2 subtests > ... > > See here for an overview: > http://analysis.cpantesters.org/reports_by_field?distv=Catalyst-View- > Reproxy-0.05;field=fail%3At%2Fpod-coverage.t
While this test failure is indeed an issue that should be corrected, please don't allow pod, critic or kwalitee tests to run for normal user installs, as they make the installation fail unnecessarily when newer versions of the tester module introduces errors that you cannot anticipate. Also spelling tests are dependent on what dictionaries are installed locally, and critic tests use all plugins that are installed, both of which cannot be predicted in advance. 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};