Skip to content

Commit b03d5e5

Browse files
committed
Skip integration tests with legacy dashboard creation as it is deprecated
1 parent bb89679 commit b03d5e5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/integration/assessment/test_dashboards.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
RedashDashboardCrawler,
99
)
1010

11-
11+
@pytest.mark.skip(reason="Legacy dashboard creation is no longer supported by Databricks.")
1212
def test_redash_dashboard_crawler_crawls_dashboards(ws, make_dashboard, inventory_schema, sql_backend) -> None:
1313
dashboard: SdkRedashDashboard = make_dashboard()
1414
crawler = RedashDashboardCrawler(ws, sql_backend, inventory_schema)
@@ -18,7 +18,7 @@ def test_redash_dashboard_crawler_crawls_dashboards(ws, make_dashboard, inventor
1818
assert len(dashboards) >= 1
1919
assert dashboard.id in {d.id for d in dashboards}, f"Missing dashboard: {dashboard.id}"
2020

21-
21+
@pytest.mark.skip(reason="Legacy dashboard creation is no longer supported by Databricks.")
2222
def test_redash_dashboard_crawler_crawls_dashboard(ws, make_dashboard, inventory_schema, sql_backend) -> None:
2323
dashboard: SdkRedashDashboard = make_dashboard()
2424
assert dashboard.id
@@ -29,7 +29,7 @@ def test_redash_dashboard_crawler_crawls_dashboard(ws, make_dashboard, inventory
2929

3030
assert dashboards == [Dashboard.from_sdk_redash_dashboard(dashboard)]
3131

32-
32+
@pytest.mark.skip(reason="Legacy dashboard creation is no longer supported by Databricks.")
3333
def test_redash_dashboard_crawler_crawls_dashboards_with_debug_listing_upper_limit(
3434
ws, make_dashboard, inventory_schema, sql_backend
3535
) -> None:

0 commit comments

Comments
 (0)