diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-04-13 13:44:31 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-04-13 13:44:31 +0200 |
commit | 5d48e0d99aaeed9bc0b0d336fe9549149b1eb91d (patch) | |
tree | 3df77a95096f6b6570f54d89d3862899c5ba7b37 /.travis.yml | |
parent | f587ef345e37ec5aa4b419e31780a1d951c9f702 (diff) | |
download | vim-git-5d48e0d99aaeed9bc0b0d336fe9549149b1eb91d.tar.gz |
patch 8.1.1163: codecov does not report all the coverage informationv8.1.1163
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.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index d683b13ef..240de516e 100644 --- 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: |