Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update get_total() to support Coverage 7.5 #28

Merged
merged 1 commit into from
Apr 24, 2024
Merged
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
5 changes: 4 additions & 1 deletion coverage_badge/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,16 @@ def pc_covered(self):
return self.percent

return Precision(total).pc_covered_str
else: # Coverage 6.x
elif hasattr(coverage.results.Numbers, 'display_covered'): # Coverage 6.x < 7.5
# NOTE: Precision is no longer set globally in the
# `coverage.results.Numbers` class. Instead the precision must be
# passed in as the first argument. We pull the precision from the
# `coverage.Coverage` object because it should pull the correct
# precision from the local .coveragerc file.
return coverage.results.Numbers(precision=cov.config.precision).display_covered(total)
else: # Coverage >= 7.5
return coverage.results.display_covered(total, cov.config.precision)



def get_color(total):
Expand Down