From 3d7aa254d5c8551878fc6557baec3d384105540c Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Thu, 2 Feb 2017 20:49:36 +0300 Subject: [PATCH] Travis CI: Fix base directory for lcov (fix commit 8270bf2) --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 2378edc..4884784 100644 --- a/.travis.yml +++ b/.travis.yml @@ -46,7 +46,7 @@ script: after_success: - if [[ "$CONF_GCOV" == --en* ]]; then - lcov --capture --directory . --output-file coverage.info; + lcov --capture --base-directory . --directory . --output-file coverage.info; 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; -- 2.7.4