Skip to content

Commit ba6fb18

Browse files
committed
Update row test bc redshift now uses CTAS
1 parent 16a032f commit ba6fb18

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

.circleci/continue_config.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff 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

tests/core/engine_adapter/integration/test_integration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)