aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorAndreas Guldstrand <andreas.guldstrand@gmail.com>2016-03-30 00:42:49 +0200
committerAndreas Guldstrand <andreas.guldstrand@gmail.com>2016-03-30 00:42:49 +0200
commit67bde88d068d5aa50c0a66d951dca5aaefc1a4f1 (patch)
tree7f6ac22e9d8f99828f9a67ef63fceec00ea7210f /.travis.yml
parentacd73fb28b639093154dd03a2bbab3ebd8864a2b (diff)
downloadsbotools-67bde88d068d5aa50c0a66d951dca5aaefc1a4f1.tar.xz
Ignore some files when doing coverage
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 4c847f4..abb615e 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -17,5 +17,5 @@ install:
- sudo bash t/travis-deps/install.sh
- cpanm Text::Diff Capture::Tiny Test::Output Devel::Cover
script:
- - bash -c 'export PERL5OPT=-MDevel::Cover=-coverage,statement,branch,condition,path,subroutine; PROVE=`which prove`; sudo -E $PROVE -v t/*.t;'
+ - bash -c 'export PERL5OPT=-MDevel::Cover=-coverage,statement,branch,condition,path,subroutine,+ignore,t/,+ignore,prove; PROVE=`which prove`; sudo -E $PROVE -v t/*.t;'
- [ -e cover_db ] && bash -c 'COVER=`which cover`; sudo $COVER -report text'