Skip to content

Commit

Permalink
Increase the number of decimal places for the AbstractLevelTotals (#458)
Browse files Browse the repository at this point in the history
  • Loading branch information
michelletran-codecov authored May 23, 2024
1 parent e3fd633 commit 420237c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion database/models/reports.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def _should_write_to_storage(self) -> bool:

class AbstractTotals(MixinBaseClass):
branches = Column(types.Integer)
coverage = Column(types.Numeric(precision=7, scale=2))
coverage = Column(types.Numeric(precision=8, scale=5))
hits = Column(types.Integer)
lines = Column(types.Integer)
methods = Column(types.Integer)
Expand Down
2 changes: 1 addition & 1 deletion requirements.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
https://github.com/codecov/shared/archive/f6c2c3852530192ab0c6b9fd0c0a800c2cbdb16f.tar.gz#egg=shared
https://github.com/codecov/shared/archive/ae6e12f3cf43188a6d6fa0156ccb78252d3405a8.tar.gz#egg=shared
https://github.com/codecov/opentelem-python/archive/refs/tags/v0.0.4a1.tar.gz#egg=codecovopentelem
https://github.com/codecov/test-results-parser/archive/5515e960d5d38881036e9127f86320efca649f13.tar.gz#egg=test-results-parser
boto3>=1.34
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ sentry-sdk==1.40.0
# via
# -r requirements.in
# shared
shared @ https://github.com/codecov/shared/archive/f6c2c3852530192ab0c6b9fd0c0a800c2cbdb16f.tar.gz
shared @ https://github.com/codecov/shared/archive/ae6e12f3cf43188a6d6fa0156ccb78252d3405a8.tar.gz
# via -r requirements.in
six==1.16.0
# via
Expand Down

0 comments on commit 420237c

Please sign in to comment.