diff options
-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' |