Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to
## [0.14.1] - 2025-10-09

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

## [0.14.0] - 2025-08-08

Expand Down
4 changes: 2 additions & 2 deletions src/dbt_score/formatters/human_readable_formatter.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ def project_evaluated(self, score: Score) -> None:
for evaluable, evaluable_score in self._failed_evaluables:
resource_type = type(evaluable)
print(
f"{resource_type.__name__} "
f"{self.pretty_name(evaluable)} scored {evaluable_score.value}"
f"{resource_type.__name__} {self.pretty_name(evaluable)} "
f"scored {evaluable_score.rounded_value}"
)

elif score.value < self._config.fail_project_under:
Expand Down