Skip to content

Commit

Permalink
Skip coverage tests unless 1 is set
Browse files Browse the repository at this point in the history
  • Loading branch information
Duncan Ferguson committed Oct 15, 2024
1 parent fde7542 commit bcd527e
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions t/pod-coverage.t
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,9 @@ use strict;
use warnings;
use Test::More;

use Test::More;
eval "use Test::Pod::Coverage 1.00";
plan skip_all => "Test::Pod::Coverage 1.00 required for testing POD coverage" if $@;

unless ( $ENV{RELEASE_TESTING} ) {
plan( skip_all => "Author tests not required for installation" );
}
plan skip_all => "Skipping coverage tests" unless $ENV{COVERAGE};

all_pod_coverage_ok();

0 comments on commit bcd527e

Please sign in to comment.