From fd0a5d2b10142450ec39c67793f3ee4e1333d38a Mon Sep 17 00:00:00 2001 From: Axel Beckert Date: Thu, 25 Sep 2014 19:50:24 +0200 Subject: [PATCH] Don't run t/gitignore.t on Travis, doesn't make sense on a fresh checkout --- t/gitignore.t | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/t/gitignore.t b/t/gitignore.t index a130a1b..5bbda2e 100755 --- a/t/gitignore.t +++ b/t/gitignore.t @@ -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 {