Skip Menu |

This queue is for tickets about the Statistics-Multtest CPAN distribution.

Report information
The Basics
Id: 112782
Status: resolved
Priority: 0/
Queue: Statistics-Multtest

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

Bug Information
Severity: (no value)
Broken in: 0.13
Fixed in: 0.14



Subject: Pod test fails (encoding problem)
Output of the failing test: # Failed test 'POD test for blib/lib/Statistics/Multtest.pm' # at /opt/perl-5.22.1/lib/site_perl/5.22.1/Test/Pod.pm line 187. # blib/lib/Statistics/Multtest.pm (460): Non-ASCII character seen before =encoding in '383¨C386.'. Assuming CP1252 # Looks like you failed 1 test of 1. t/00-pod.t ........... Dubious, test returned 1 (wstat 256, 0x100) Failed 1/1 subtests
On 2016-03-08 00:29:33, SREZIC wrote: Show quoted text
> Output of the failing test: > > # Failed test 'POD test for blib/lib/Statistics/Multtest.pm' > # at /opt/perl-5.22.1/lib/site_perl/5.22.1/Test/Pod.pm line 187. > # blib/lib/Statistics/Multtest.pm (460): Non-ASCII character seen > before =encoding in '383¨C386.'. Assuming CP1252 > # Looks like you failed 1 test of 1. > t/00-pod.t ........... > Dubious, test returned 1 (wstat 256, 0x100) > Failed 1/1 subtests
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 introduce 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};
On Tue Mar 08 12:11:27 2016, ETHER wrote: Show quoted text
> On 2016-03-08 00:29:33, SREZIC wrote:
> > Output of the failing test: > > > > # Failed test 'POD test for blib/lib/Statistics/Multtest.pm' > > # at /opt/perl-5.22.1/lib/site_perl/5.22.1/Test/Pod.pm line 187. > > # blib/lib/Statistics/Multtest.pm (460): Non-ASCII character seen > > before =encoding in '383¨C386.'. Assuming CP1252 > > # Looks like you failed 1 test of 1. > > t/00-pod.t ........... > > Dubious, test returned 1 (wstat 256, 0x100) > > Failed 1/1 subtests
> > > 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 introduce 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};
I've sent the author a merge request (https://github.com/jokergoo/Statistics-Multtest/pull/1) which fixes this problem. It has been merged and he will release a new version to CPAN as soon as possible. Dave...
On 2017-08-21 03:31:14, DAVECROSS wrote: Show quoted text
> On Tue Mar 08 12:11:27 2016, ETHER wrote:
> > On 2016-03-08 00:29:33, SREZIC wrote:
> > > Output of the failing test: > > > > > > # Failed test 'POD test for blib/lib/Statistics/Multtest.pm' > > > # at /opt/perl-5.22.1/lib/site_perl/5.22.1/Test/Pod.pm line 187. > > > # blib/lib/Statistics/Multtest.pm (460): Non-ASCII character seen > > > before =encoding in '383¨C386.'. Assuming CP1252 > > > # Looks like you failed 1 test of 1. > > > t/00-pod.t ........... > > > Dubious, test returned 1 (wstat 256, 0x100) > > > Failed 1/1 subtests
> > > > > > 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 introduce 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};
> > I've sent the author a merge request > (https://github.com/jokergoo/Statistics-Multtest/pull/1) which fixes > this problem. It has been merged and he will release a new version to > CPAN as soon as possible. > > Dave...
Fixed in 0.14, it seems.