summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml3
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: