Skip to content

Commit 3f51d13

Browse files
committed
Disable tests for Databricks too
1 parent b0ea051 commit 3f51d13

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

.circleci/continue_config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -310,10 +310,10 @@ workflows:
310310
- athena
311311
- fabric
312312
- gcp-postgres
313-
# filters:
314-
# branches:
315-
# only:
316-
# - main
313+
filters:
314+
branches:
315+
only:
316+
- main
317317
- ui_style
318318
- ui_test
319319
- vscode_test

tests/core/engine_adapter/integration/test_integration.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3738,13 +3738,11 @@ def _set_config(_gateway: str, config: Config) -> None:
37383738
def test_materialized_view_evaluation(ctx: TestContext, mocker: MockerFixture):
37393739
adapter = ctx.engine_adapter
37403740
dialect = ctx.dialect
3741+
37413742
if not adapter.SUPPORTS_MATERIALIZED_VIEWS:
37423743
pytest.skip(f"Skipping engine {dialect} as it does not support materialized views")
3743-
3744-
elif dialect == "snowflake":
3745-
pytest.skip(
3746-
f"Skipping Snowflake as it requires an enterprise account for materialized views"
3747-
)
3744+
elif dialect in ("snowflake", "databricks"):
3745+
pytest.skip(f"Skipping {dialect} as they're not enabled on standard accounts")
37483746

37493747
model_name = ctx.table("test_tbl")
37503748
mview_name = ctx.table("test_mview")

0 commit comments

Comments
 (0)