Skip to content

Commit

Permalink
XXX skip cpan testing
Browse files Browse the repository at this point in the history
  • Loading branch information
khwilliamson committed May 6, 2023
1 parent 62e14a5 commit 063e98f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions t/TEST
Expand Up @@ -439,8 +439,14 @@ sub _tests_from_manifest {
push @results, \%non_ext if $all;
my $mani = '../MANIFEST';
if (open(MANI, $mani)) {
my $output_skip = 0;
while (<MANI>) {
chomp;
if (m!^cpan!) {
print STDERR "Skipping cpan testing\n" unless $output_skip;
$output_skip = 1;
next;
}
my ($file)= split /\t/, $_;
if ($file =~ m!^((?:cpan|dist|ext)/(\S+)/+(?:[^/\s]+\.t|test\.pl)|lib/\S+?(?:\.t|test\.pl))\z!) {
my $t = $1;
Expand Down

0 comments on commit 063e98f

Please sign in to comment.