Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion colcon_lcov_result/task/lcov.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ async def lcov_capture(self, *, additional_hooks=None): # noqa: D102
if args.initial:
output_file = baseline_file
additional_args = ['--initial',
'--rc', 'lcov_branch_coverage=0']
'--rc', 'branch_coverage=0']
else:
output_file = os.path.join(pkg_build_folder, 'coverage.info')
additional_args = []
Expand Down
4 changes: 2 additions & 2 deletions colcon_lcov_result/verb/configuration/lcovrc
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ lcov_quiet = 1

# Specify if function coverage data should be collected and
# processed.
lcov_function_coverage = 1
function_coverage = 1

# Specify if branch coverage data should be collected and
# processed.
lcov_branch_coverage = 1
branch_coverage = 1

## Follow symlinks
lcov_follow = 1
Loading