From 43f61f434bf57497b7fbe77685f6da21053d7331 Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Thu, 7 Aug 2025 07:34:26 +0300 Subject: [PATCH] Travis CI: Do not ignore lcov errors --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1d38f66c..09a4e187 100644 --- a/.travis.yml +++ b/.travis.yml @@ -625,9 +625,9 @@ script: after_success: - if [[ "$REPORT_COVERAGE" == true ]]; then - lcov --capture --directory src --directory tests --output-file coverage.info; - lcov --remove coverage.info 'tests/*' --output-file coverage.info; - lcov --list coverage.info; + lcov --capture --directory src --directory tests --output-file coverage.info && + lcov --remove coverage.info 'tests/*' --output-file coverage.info && + lcov --list coverage.info && coveralls-lcov --repo-token=${COVERALLS_REPO_TOKEN} coverage.info; fi