Skip to content

Commit 728e322

Browse files
committed
Round score of individual entities when showing summary
1 parent 6a26407 commit 728e322

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ and this project adheres to
1111
## [0.14.1] - 2025-10-09
1212

1313
- Migrate to `uv` project manager.
14+
- Round score of individual entities when showing summary.
1415

1516
## [0.14.0] - 2025-08-08
1617

src/dbt_score/formatters/human_readable_formatter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def project_evaluated(self, score: Score) -> None:
9696
resource_type = type(evaluable)
9797
print(
9898
f"{resource_type.__name__} "
99-
f"{self.pretty_name(evaluable)} scored {evaluable_score.value}"
99+
f"{self.pretty_name(evaluable)} scored {evaluable_score.rounded_value}"
100100
)
101101

102102
elif score.value < self._config.fail_project_under:

0 commit comments

Comments
 (0)