1
0
mirror of synced 2026-03-31 03:00:55 +00:00

Don't run t/gitignore.t on Travis, doesn't make sense on a fresh checkout

This commit is contained in:
Axel Beckert
2014-09-25 19:50:24 +02:00
parent edc7737cb3
commit fd0a5d2b10

View File

@@ -10,6 +10,10 @@ use strict;
use Test::More;
use File::Which;
if ( $ENV{TRAVIS} ) {
plan( skip_all => "these tests don't make sense on a fresh checkout" );
}
if (which('git') and -d '.git') {
plan tests => 3;
} else {