Skip to content

Commit 692cd3e

Browse files
committed
Travis CI: Fix 'exclude pattern /usr is unused' lcov error
1 parent 04533aa commit 692cd3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -626,7 +626,7 @@ script:
626626
after_success:
627627
- if [[ "$REPORT_COVERAGE" == true ]]; then
628628
lcov --capture --directory src --directory tests --output-file coverage.info;
629-
lcov --remove coverage.info '/usr/*' 'tests/*' --output-file coverage.info;
629+
lcov --remove coverage.info 'tests/*' --output-file coverage.info;
630630
lcov --list coverage.info;
631631
coveralls-lcov --repo-token=${COVERALLS_REPO_TOKEN} coverage.info;
632632
fi

0 commit comments

Comments
 (0)