# HG changeset patch # User Bram Moolenaar # Date 1555155904 -7200 # Node ID f640d1f3dbbf1a8d0a8c1ad6e3f5332ad0b1ab2a # Parent 6b53fab30b5f5e45f9b2187000e9e8fc13eec584 patch 8.1.1163: codecov does not report all the coverage information commit https://github.com/vim/vim/commit/5d48e0d99aaeed9bc0b0d336fe9549149b1eb91d Author: Bram Moolenaar Date: Sat Apr 13 13:44:31 2019 +0200 patch 8.1.1163: codecov does not report all the coverage information Problem: Codecov does not report all the coverage information. Solution: Make a second run with the nested execution output, expect that Codecov will merge the results. diff --git a/.travis.yml b/.travis.yml --- a/.travis.yml +++ b/.travis.yml @@ -170,6 +170,9 @@ after_success: - | if [[ "${COVERAGE}" = "yes" ]]; then (cd "${SRCDIR}" && bash <(curl -s https://codecov.io/bash)) + # Also do this for nested executions, codecov will merge the results. + mv "${SRCDIR}"/testdir/nested/* "${SRCDIR}"/objects + (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 @@ -772,6 +772,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1163, +/**/ 1162, /**/ 1161,