diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-04-13 22:44:51 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-04-13 22:44:51 +0200 |
commit | 837854d1bc01d91ff463a2cfdf8aec9b89d5fbd1 (patch) | |
tree | 1e4924dea6cbbdb30f618f1ac0c0a13dc1ef49d8 /.travis.yml | |
parent | 87dcfd75c218107ca966c80a0a56b236be046fc9 (diff) | |
download | vim-git-837854d1bc01d91ff463a2cfdf8aec9b89d5fbd1.tar.gz |
patch 8.1.1169: writing coverage info in a separate dir is not neededv8.1.1169
Problem: Writing coverage info in a separate dir is not needed.
Solution: Revert the changes to use a separate directory.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 240de516e..d683b13ef 100644 --- a/.travis.yml +++ b/.travis.yml @@ -170,9 +170,6 @@ 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: |