Skip to content

Commit

Permalink
test_report: make it work on dbs other than postgres
Browse files Browse the repository at this point in the history
  • Loading branch information
haritamar committed Nov 18, 2024
1 parent d85644d commit 1c6e958
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/e2e/report/test_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def test_group(): # deprecated
} not in report_data["groups"]["tags"]["No tags"]


def test_group_views():
def test_group_views(warehouse_type):
report_data = get_report_data()
groups = report_data.get("groups")

Expand All @@ -80,7 +80,7 @@ def test_group_views():
assert data_assets_group[3]["name"] == "owners"
owners_view = data_assets_group[3]["data"]

assert "postgres" in dwh_view
assert warehouse_type in dwh_view
assert {
"node_id": "model.elementary_integration_tests.error_model",
"resource_type": "model",
Expand Down

0 comments on commit 1c6e958

Please sign in to comment.