Skip Menu |

This queue is for tickets about the Bio-GeneDesign CPAN distribution.

Report information
The Basics
Id: 132857
Status: open
Priority: 0/
Queue: Bio-GeneDesign

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

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



Subject: t/pod-coverage.t fails
On some of my smoker systems the test suite fails: ... # Failed test 'Pod coverage on Bio::GeneDesign' # at /opt/perl-5.32.0t/lib/site_perl/5.32.0/Test/Pod/Coverage.pm line 133. # Coverage for Bio::GeneDesign is 98.5%, with 1 naked subroutine: # import_seq_from_string # Failed test 'Pod coverage on Bio::GeneDesign::Graph' # at /opt/perl-5.32.0t/lib/site_perl/5.32.0/Test/Pod/Coverage.pm line 133. # Bio::GeneDesign::Graph: requiring 'Bio::GeneDesign::Graph' failed # Looks like you failed 2 tests of 13. t/pod-coverage.t .......... Dubious, test returned 2 (wstat 512, 0x200) Failed 2/13 subtests ...
On 2020-06-21 11:30:26, SREZIC wrote: Show quoted text
> On some of my smoker systems the test suite fails:
While this test failure is indeed an issue that should be corrected, please don't allow pod, critic, coverage 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, neither of which can be predicted in advance. Either move these tests to xt/, or guard them with: plan skip_all => "These tests are for authors only!" unless $ENV{AUTHOR_TESTING} or $ENV{RELEASE_TESTING};