File tree Expand file tree Collapse file tree 2 files changed +15
-15
lines changed
tests/core/engine_adapter/integration Expand file tree Collapse file tree 2 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -297,23 +297,23 @@ workflows:
297297 name : cloud_engine_<< matrix.engine >>
298298 context :
299299 - sqlmesh_cloud_database_integration
300- requires :
301- - engine_tests_docker
300+ # requires:
301+ # - engine_tests_docker
302302 matrix :
303303 parameters :
304304 engine :
305- - snowflake
306- - databricks
305+ # - snowflake
306+ # - databricks
307307 - redshift
308- - bigquery
309- - clickhouse-cloud
310- - athena
311- - fabric
312- - gcp-postgres
313- filters :
314- branches :
315- only :
316- - main
308+ # - bigquery
309+ # - clickhouse-cloud
310+ # - athena
311+ # - fabric
312+ # - gcp-postgres
313+ # filters:
314+ # branches:
315+ # only:
316+ # - main
317317 - ui_style
318318 - ui_test
319319 - vscode_test
Original file line number Diff line number Diff line change @@ -2423,9 +2423,9 @@ def capture_execution_stats(
24232423
24242424 if ctx .engine_adapter .SUPPORTS_QUERY_EXECUTION_TRACKING :
24252425 assert actual_execution_stats ["incremental_model" ].total_rows_processed == 7
2426- # snowflake doesn 't track rows for CTAS
2426+ # snowflake and redshift don 't track rows for CTAS
24272427 assert actual_execution_stats ["full_model" ].total_rows_processed == (
2428- None if ctx .mark .startswith ("snowflake" ) else 3
2428+ None if ctx .mark .startswith ("snowflake" ) or ctx . mark . startswith ( "redshift" ) else 3
24292429 )
24302430 assert actual_execution_stats ["seed_model" ].total_rows_processed == (
24312431 None if ctx .mark .startswith ("snowflake" ) else 7
You can’t perform that action at this time.
0 commit comments