Skip Menu |

This queue is for tickets about the XML-TMX CPAN distribution.

Report information
The Basics
Id: 111092
Status: resolved
Priority: 0/
Queue: XML-TMX

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

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



Subject: pod test fails (0.30)
# Failed test 'POD test for blib/script/tsv2tmx' # at /usr/perl5.22.1p/lib/site_perl/5.22.1/Test/Pod.pm line 187. # blib/script/tsv2tmx (148): Non-ASCII character seen before =encoding in 'Sim<F5>es,'. Assuming UTF-8 # Looks like you failed 1 test of 14. t/98_pod.t ........... Dubious, test returned 1 (wstat 256, 0x100) Failed 1/14 subtests Probably either "=encoding iso-8859-1" or "=encoding utf-8" is required here.
On Mon Jan 11 14:30:04 2016, SREZIC wrote: Show quoted text
> # Failed test 'POD test for blib/script/tsv2tmx' > # at /usr/perl5.22.1p/lib/site_perl/5.22.1/Test/Pod.pm line 187. > # blib/script/tsv2tmx (148): Non-ASCII character seen before =encoding > in 'Sim<F5>es,'. Assuming UTF-8 > # Looks like you failed 1 test of 14. > t/98_pod.t ........... > Dubious, test returned 1 (wstat 256, 0x100) > Failed 1/14 subtests > > > Probably either "=encoding iso-8859-1" or "=encoding utf-8" is > required here.
That was a fast bug report. Thanks Fixed :D
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};
Subject: Re: [rt.cpan.org #111092] pod test fails (0.30)
Date: Mon, 11 Jan 2016 19:52:58 +0000
To: bug-XML-TMX [...] rt.cpan.org
From: Alberto Simoes <ambs [...] perl-hackers.net>
On 11/01/16 19:51, Karen Etheridge via RT wrote: Show quoted text
> Queue: XML-TMX > Ticket <URL: https://rt.cpan.org/Ticket/Display.html?id=111092 > > > 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}; >
Yeah, I know. Just need to have the time to do that for all my modules :)