From 2583121d34f8578b47b9b538508b8f7d75c79174 Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Thu, 7 Aug 2025 07:28:37 +0300 Subject: [PATCH] Travis CI: Fix 'exclude pattern /usr is unused' lcov error --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 76acd598..1d38f66c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -626,7 +626,7 @@ script: after_success: - if [[ "$REPORT_COVERAGE" == true ]]; then lcov --capture --directory src --directory tests --output-file coverage.info; - lcov --remove coverage.info '/usr/*' '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