changeset 16316:f640d1f3dbbf v8.1.1163

patch 8.1.1163: codecov does not report all the coverage information commit https://github.com/vim/vim/commit/5d48e0d99aaeed9bc0b0d336fe9549149b1eb91d Author: Bram Moolenaar <Bram@vim.org> 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.
author Bram Moolenaar <Bram@vim.org>
date Sat, 13 Apr 2019 13:45:04 +0200
parents 6b53fab30b5f
children 0cb89aa305c1
files .travis.yml src/version.c
diffstat 2 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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:
--- 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,