Skip to content

Commit 2fa3ae5

Browse files
committed
Seeds are now handled in evaluator
1 parent 72c0a7e commit 2fa3ae5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/core/engine_adapter/integration/test_integration.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2413,13 +2413,12 @@ def capture_execution_stats(
24132413
assert len(physical_layer_results.tables) == len(physical_layer_results.non_temp_tables) == 3
24142414

24152415
if ctx.engine_adapter.SUPPORTS_QUERY_EXECUTION_TRACKING:
2416+
assert actual_execution_stats["seed_model"].total_rows_processed == 7
24162417
assert actual_execution_stats["incremental_model"].total_rows_processed == 7
24172418
# snowflake doesn't track rows for CTAS
24182419
assert actual_execution_stats["full_model"].total_rows_processed == (
24192420
None if ctx.mark.startswith("snowflake") else 3
24202421
)
2421-
# seed rows aren't tracked
2422-
assert actual_execution_stats["seed_model"].total_rows_processed is None
24232422

24242423
if ctx.mark.startswith("bigquery") or ctx.mark.startswith("databricks"):
24252424
assert actual_execution_stats["incremental_model"].total_bytes_processed is not None

0 commit comments

Comments
 (0)