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

- Support linting of exposures (#112)
- Fix retrieval of data_tests when using quoted columns in BigQuery (#122)

## [0.12.0] - 2025-05-06

Expand Down
3 changes: 2 additions & 1 deletion src/dbt_score/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,8 @@ def _get_columns(
for test in test_values
if test.get("test_metadata", {})
.get("kwargs", {})
.get("column_name")
.get("column_name", "")
.strip("`") # BigQuery connector when "quote: true"
== name
],
)
Expand Down