From 0a0c974f38e7ef41ecf0af5c6a3eacac7369aa38 Mon Sep 17 00:00:00 2001 From: sfc-gh-madkins <82121043+sfc-gh-madkins@users.noreply.github.com> Date: Thu, 18 Aug 2022 22:44:37 -0500 Subject: [PATCH] fix: Teardown tables for Snowflake Materialization testing (#3106) Signed-off-by: Miles Adkins Signed-off-by: Miles Adkins --- sdk/python/tests/integration/materialization/test_snowflake.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sdk/python/tests/integration/materialization/test_snowflake.py b/sdk/python/tests/integration/materialization/test_snowflake.py index b11652c989..0cf1471dfe 100644 --- a/sdk/python/tests/integration/materialization/test_snowflake.py +++ b/sdk/python/tests/integration/materialization/test_snowflake.py @@ -81,6 +81,7 @@ def test_snowflake_materialization_consistency_internal(): validate_offline_online_store_consistency(fs, driver_stats_fv, split_dt) finally: fs.teardown() + snowflake_environment.data_source_creator.teardown() @pytest.mark.integration @@ -123,3 +124,4 @@ def test_snowflake_materialization_consistency_external(): validate_offline_online_store_consistency(fs, driver_stats_fv, split_dt) finally: fs.teardown() + snowflake_environment.data_source_creator.teardown()