1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Description: disable Kwalitee tests
These probably aren't going to be useful, and will cause
build failures if the CPANTS analyser is changed.
Origin: vendor
Forwarded: not-needed
Author: Jonathan Yu <jawnsy@cpan.org>
Reviewed-by: gregor herrmann <gregoa@debian.org>
Last-Update: 2015-08-17
--- a/t/04-test-kwalitee.t
+++ b/t/04-test-kwalitee.t
@@ -1,3 +1,8 @@
use Test::More;
+
+unless ($ENV{RELEASE_TESTING}) {
+ plan skip_all => 'Kwalitee is an author test';
+}
+
eval { require Test::Kwalitee; Test::Kwalitee->import() };
plan( skip_all => 'Test::Kwalitee not installed; skipping' ) if $@;
|