Skip to content

Commit

Permalink
Test workaround for codecov/codecov-action#1274
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelhorne committed Sep 26, 2024
1 parent 51aaf0f commit e0325d9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
- name: Install Dependencies
run: |
cpanm --quiet --notest --installdeps .
Expand Down
9 changes: 3 additions & 6 deletions t/vars.t
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,9 @@
use strict;
use warnings;

use Test::DescribeMe qw(author);
use Test::Most;
use Test::Needs 'Test::Vars';

if($ENV{'AUTHOR_TESTING'}) {
Test::Vars->import();
all_vars_ok(ignore_vars => { '$self' => 0 });
} else {
plan(skip_all => 'Author tests not required for installation');
}
Test::Vars->import();
all_vars_ok(ignore_vars => { '$self' => 0 });

0 comments on commit e0325d9

Please sign in to comment.