# HG changeset patch # User Christian Brabandt # Date 1490461205 -3600 # Node ID d9077ce382a8b64d19d98d8361a4e7879cf7ba90 # Parent 56ad74ce1a3aef1b2bb47bdd64c0af6d4ba7d2d6 patch 8.0.0508: Coveralls no longer shows per-file coverage commit https://github.com/vim/vim/commit/d722fd74d84c8e7119d9599b67388bd26a2dacf5 Author: Bram Moolenaar Date: Sat Mar 25 17:46:59 2017 +0100 patch 8.0.0508: Coveralls no longer shows per-file coverage Problem: Coveralls no longer shows per-file coverage. Solution: Add coverage from codecov.io. (Christian Brabandt) diff --git a/.travis.yml b/.travis.yml --- a/.travis.yml +++ b/.travis.yml @@ -99,5 +99,6 @@ script: after_success: - if [ "$COVERAGE" = "yes" ]; then ~/.local/bin/coveralls -b $SRCDIR -x .xs -e ${SRCDIR}/xxd -e ${SRCDIR}/if_perl.c --encodings utf-8 latin-1 EUC-KR; fi + - if [ "$COVERAGE" = "yes" ]; then cd $SRCDIR && bash <(curl -s https://codecov.io/bash) ; fi # vim:set sts=2 sw=2 tw=0 et: diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -765,6 +765,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 508, +/**/ 507, /**/ 506,