From 50bb6b20fe73ccd5e466c18e66d10ea108bd6e88 Mon Sep 17 00:00:00 2001 From: Hari Selvarajan Date: Sun, 31 Mar 2024 21:53:57 +0100 Subject: [PATCH] removing connection parameter in config.yml --- tests/integration/hive_metastore/test_migrate.py | 1 - tests/integration/test_installation.py | 10 +++++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/tests/integration/hive_metastore/test_migrate.py b/tests/integration/hive_metastore/test_migrate.py index e456302906..b9bec4bd05 100644 --- a/tests/integration/hive_metastore/test_migrate.py +++ b/tests/integration/hive_metastore/test_migrate.py @@ -648,7 +648,6 @@ def test_prepare_principal_acl( { "config.yml": { 'warehouse_id': env_or_skip("TEST_DEFAULT_WAREHOUSE_ID"), - 'connect': {'host': 'a', 'token': 'b'}, 'inventory_database': inventory_schema, }, "azure_storage_account_info.csv": [ diff --git a/tests/integration/test_installation.py b/tests/integration/test_installation.py index 2fd329e577..fcf9a1e772 100644 --- a/tests/integration/test_installation.py +++ b/tests/integration/test_installation.py @@ -651,7 +651,15 @@ def test_table_migration_job( @retried(on=[NotFound], timeout=timedelta(minutes=5)) def test_table_migration_job_cluster_override( # pylint: disable=too-many-locals - ws, new_installation, make_catalog, make_schema, make_table, env_or_skip, make_random, make_dbfs_data_copy, sql_backend + ws, + new_installation, + make_catalog, + make_schema, + make_table, + env_or_skip, + make_random, + make_dbfs_data_copy, + sql_backend, ): # create external and managed tables to be migrated src_schema = make_schema(catalog_name="hive_metastore", name=f"migrate_{make_random(5).lower()}")