From f1c87ba09bf7f3513b9205740eb296d8d4555ce6 Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Tue, 4 Sep 2018 10:10:04 +0300 Subject: [PATCH] Travis CI: Send code coverage reports to Codecov as well --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 5004dc2e..ee5625cc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -610,6 +610,7 @@ after_success: lcov --remove coverage.info '/usr/*' 'cord/tests/*' 'libatomic_ops/*' 'tests/*' --output-file coverage.info; lcov --list coverage.info; coveralls-lcov --repo-token ${COVERALLS_TOKEN} coverage.info; + bash <(curl -s https://codecov.io/bash); fi deploy: -- 2.40.0