diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2017-08-29 15:14:00 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2017-08-29 16:37:42 +0100 |
commit | 77d4d7096a3f0f83e5c19260a320fd2b11455a48 (patch) | |
tree | 4c3293e2a039818638ce4efd16b6b97471cc6cc5 /.travis.yml | |
parent | 68111f484bf27f03ce023497fdc5868c2b724ffb (diff) |
Use our fork of Devel::Cover::Report::Codecov.
This allows branches that are fully covered or marked as uncoverable
to pass on Codecov, rather than count as partials.
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 de9603218..13bbee380 100644 --- a/.travis.yml +++ b/.travis.yml @@ -37,7 +37,7 @@ addons: install: - .travis/install - - 'if [ "$TRAVIS_PERL_VERSION" = "5.24" ]; then cpanm --quiet --notest Devel::Cover::Report::Codecov; fi' + - 'if [ "$TRAVIS_PERL_VERSION" = "5.24" ]; then cpanm --quiet --notest https://github.com/mysociety/codecov-perl/tarball/cover-uncoverables; fi' before_script: - commonlib/bin/gettext-makemo FixMyStreet - 'if [ "$TRAVIS_PERL_VERSION" = "5.24" ]; then export HARNESS_PERL_SWITCHES="-MDevel::Cover=+ignore,local/lib/perl5,commonlib,perllib/Catalyst,perllib/DBIx,perllib/Email,perllib/Template,^t"; fi' |