Skip to content

Commit d07f3a9

Browse files
authored
Merge pull request #105 from sumedhghaisas/lcov_support
Bug fix: Using max_cov_count with integer typecast
2 parents 97f12c8 + 499c247 commit d07f3a9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cpp_coveralls/coverage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def create_args(params):
7272
help='Follow symlinks (default off)')
7373
parser.add_argument('-l', '--lcov-file', metavar='FILE',
7474
help='Upload lcov generated info file')
75-
parser.add_argument('--max-cov-count', metavar='NUMBER',
75+
parser.add_argument('--max-cov-count', metavar='NUMBER', type=int,
7676
help='Max number for line coverage count. If line'
7777
'coverage count is greater than the given number'
7878
'(Max + 1) will be put instead. Helps in managing'

0 commit comments

Comments
 (0)