Skip to content

Commit

Permalink
Reverse the logic around SKIP for jigsaw tests
Browse files Browse the repository at this point in the history
  • Loading branch information
oalders committed Oct 11, 2019
1 parent c16c3f2 commit 548b548
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,18 @@ matrix:
- perl: blead-thr
- perl: dev
- perl: 5.12-thr # tarball 404s
- env: LIVE_JIGSAW_TESTS=1
- env: NO_JIGSAW=0
fast_finish: 1
include:
- env: COVERAGE=1
perl: "5.30"
- env: LIVE_JIGSAW_TESTS=1
- env: NO_JIGSAW=0
perl: "5.30"
env:
global:
- AUTHOR_TESTING=1
- AUTOMATED_TESTING=1
- NO_JIGSAW=1
- RELEASE_TESTING=1
- PERL_CPANM_OPT=--with-suggests
- SENDMAIL=/usr/sbin/sendmail # fake, but needed for LWP::Protocol::mailto
Expand Down
2 changes: 1 addition & 1 deletion xt/author/live/jigsaw/auth-d.t
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ use LWP::UserAgent;
}

SKIP: {
skip 'LIVE_JIGSAW_TESTS not enabled', 3 unless $ENV{LIVE_JIGSAW_TESTS};
skip 'LIVE_JIGSAW_TESTS not enabled', 3 if $ENV{NO_JIGSAW};

my $ua = MyUA->new(keep_alive => 1);

Expand Down

0 comments on commit 548b548

Please sign in to comment.