Skip to content

Commit

Permalink
feat: add support for dbt 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
sweco committed Nov 8, 2023
1 parent 5926212 commit 89fd49a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]
### Added
- Support for `dbt==1.6`
- Integration tests

## [0.3.4] - 2023-05-17
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ the support matrix.
|-------------|----------------|
| <0.20 | not tested |
| 0.20 - 0.21 | 0.1 |
| 1.0 - 1.5 | 0.2, 0.3 |
| 1.0 - 1.6 | 0.2, 0.3 |

## Related packages

Expand Down
1 change: 1 addition & 0 deletions dbt_coverage/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"https://schemas.getdbt.com/dbt/manifest/v7.json",
"https://schemas.getdbt.com/dbt/manifest/v8.json",
"https://schemas.getdbt.com/dbt/manifest/v9.json",
"https://schemas.getdbt.com/dbt/manifest/v10.json",
]

app = typer.Typer(help="Compute coverage of dbt-managed data warehouses.")
Expand Down
8 changes: 8 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ env_list =
dbt13
dbt14
dbt15
dbt16

[testenv]
description = run integration tests
Expand Down Expand Up @@ -62,3 +63,10 @@ deps =
{[testenv]deps}
dbt-core~=1.5.0
dbt-postgres~=1.5.0

[testenv:dbt16]
description = run with dbt==1.6
deps =
{[testenv]deps}
dbt-core~=1.6.0
dbt-postgres~=1.6.0

0 comments on commit 89fd49a

Please sign in to comment.