diff .travis.yml @ 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 5b592d4eb23a
children b576f2e069b7
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: