Skip to content

Commit

Permalink
Merge branch 'master' of github.com:nigelhorne/Genealogy-ObituaryDail…
Browse files Browse the repository at this point in the history
…yTimes
  • Loading branch information
nigelhorne committed Dec 29, 2020
2 parents 202fc5c + 100a7d5 commit 7b79471
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
2 changes: 2 additions & 0 deletions MANIFEST
Expand Up @@ -19,4 +19,6 @@ t/noplan.t
t/pod-cm.t
t/pod.t
t/search.t
t/snippets.t
t/strict.t
t/unused.t
4 changes: 2 additions & 2 deletions bin/create_db.PL
Expand Up @@ -83,10 +83,10 @@ $ua->conn_cache()->total_capacity(undef);

my $page = 1;
my @queue;
while(1) {
do {
last if(!mlarchives($ua, $page));
$page++;
}
} while($page < 200);

my $issue = 9;
while(1) {
Expand Down
16 changes: 8 additions & 8 deletions t/noplan.t
Expand Up @@ -5,13 +5,13 @@ use warnings;

use Test::Most;

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

eval 'use Test::NoPlan qw / all_plans_ok /';
if($@) {
plan skip_all => 'Test::NoPlan required for test verification';
if($ENV{AUTHOR_TESTING}) {
eval 'use Test::NoPlan qw / all_plans_ok /';
if($@) {
plan(skip_all => 'Test::NoPlan required for test verification');
} else {
all_plans_ok();
}
} else {
all_plans_ok();
plan(skip_all => 'Author tests not required for installation');
}

0 comments on commit 7b79471

Please sign in to comment.