diff options
author | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2016-03-30 19:53:53 +0200 |
---|---|---|
committer | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2016-03-30 19:53:53 +0200 |
commit | 9ccac658517d5a0eaf95a1a1fd5e72956fab72f3 (patch) | |
tree | 6ba5041d4334cf69e0527b9b4f145d6f51a4c5c0 /.travis.yml | |
parent | caa1fd81f70b8e16430c609f5248fd187cc567f2 (diff) | |
download | sbotools-9ccac658517d5a0eaf95a1a1fd5e72956fab72f3.tar.xz |
Change how we handle the cover_db not working
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 94432fb..1734955 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,4 +18,4 @@ install: - cpanm Text::Diff Capture::Tiny Test::Output Devel::Cover script: - 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;' - - true && [ -e cover_db ] && bash -c 'COVER=`which cover`; sudo $COVER -report text' + - bash -c 'COVER=`which cover`; sudo $COVER -report text || echo "Problem reading the cover_db."; exit 0' |