Skip to content

Commit 4b2cd0b

Browse files
committed
Do not check for history records yet
1 parent e5705ac commit 4b2cd0b

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

tests/integration/progress/test_workflows.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,3 @@ def test_running_real_migration_progress_job(installation_ctx: MockInstallationC
3434
# Ensure that the migration-progress workflow populated the `workflow_runs` table.
3535
query = f"SELECT 1 FROM {installation_ctx.ucx_catalog}.multiworkspace.workflow_runs"
3636
assert any(installation_ctx.sql_backend.fetch(query)), f"No workflow run captured: {query}"
37-
38-
# Ensure that the migration-progress workflow populates the historical records for each relevant UCX inventory table
39-
ucx_inventory_tables = "tables",
40-
for ucx_inventory_table in ucx_inventory_tables:
41-
query = f"SELECT 1 FROM {installation_ctx.ucx_catalog}.multiworkspace.historical_records WHERE object_type = '{ucx_inventory_table}'"
42-
assert any(installation_ctx.sql_backend.fetch(query)), f"No workflow run captured: {query}"

0 commit comments

Comments
 (0)