From ae36bf3eb87b23cc44165865ef8de4683599c941 Mon Sep 17 00:00:00 2001 From: VersusFacit <67295367+VersusFacit@users.noreply.github.com> Date: Thu, 26 Sep 2024 02:52:56 -0700 Subject: [PATCH] Disable dynamic tests. --- tests/functional/relation_tests/test_relation_type_change.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/functional/relation_tests/test_relation_type_change.py b/tests/functional/relation_tests/test_relation_type_change.py index 974757ad4..44b44c823 100644 --- a/tests/functional/relation_tests/test_relation_type_change.py +++ b/tests/functional/relation_tests/test_relation_type_change.py @@ -40,8 +40,9 @@ def error_message(self) -> str: relations = [ Model(models.VIEW, "view"), Model(models.TABLE, "table", "default"), - Model(models.DYNAMIC_TABLE, "dynamic_table", "default"), - Model(models.DYNAMIC_ICEBERG_TABLE, "dynamic_table", "iceberg"), + # to be activated upon merge of dynamic table support PR + # Model(models.DYNAMIC_TABLE, "dynamic_table", "default"), + # Model(models.DYNAMIC_ICEBERG_TABLE, "dynamic_table", "iceberg"), Model(models.ICEBERG_TABLE, "table", "iceberg"), Model(models.ICEBERG_INCREMENTAL_TABLE, "incremental", "iceberg"), ]