Skip Menu |

This queue is for tickets about the Travel-Status-DE-DBWagenreihung CPAN distribution.

Report information
The Basics
Id: 129895
Status: resolved
Priority: 0/
Queue: Travel-Status-DE-DBWagenreihung

People
Owner: DERF [...] cpan.org
Requestors: SREZIC [...] cpan.org
Cc:
AdminCc:

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



Subject: Undefined subroutine &main::all_pm_files_ok (0.02)
Same problem as described in https://rt.cpan.org/Ticket/Display.html?id=129885 ... Undefined subroutine &main::all_pm_files_ok called at t/00-compile-pm.t line 8. t/00-compile-pm.t ... Dubious, test returned 255 (wstat 65280, 0xff00) No subtests run Undefined subroutine &main::all_pl_files_ok called at t/01-compile-pl.t line 8. t/01-compile-pl.t ... Dubious, test returned 255 (wstat 65280, 0xff00) No subtests run ...
On 2019-06-23 09:26:47, SREZIC wrote: Show quoted text
> Same problem as described in > https://rt.cpan.org/Ticket/Display.html?id=129885 > > ... > Undefined subroutine &main::all_pm_files_ok called at t/00-compile- > pm.t line 8. > t/00-compile-pm.t ... > Dubious, test returned 255 (wstat 65280, 0xff00) > No subtests run > Undefined subroutine &main::all_pl_files_ok called at t/01-compile- > pl.t line 8. > t/01-compile-pl.t ... > Dubious, test returned 255 (wstat 65280, 0xff00) > No subtests run > ...
While this test failure is indeed an issue that should be corrected, please don't allow pod, critic, coverage, kwalitee or compile 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};
Hi, I have moved the author tests to xt/ as suggested. Thanks for reporting.