From a47024a9ba5735c27877e8be7ff4c1afcfdb1033 Mon Sep 17 00:00:00 2001 From: ptiurin Date: Fri, 2 Feb 2024 13:34:52 +0000 Subject: [PATCH] skipping FK tests --- tests/functional/adapter/test_constraints.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/functional/adapter/test_constraints.py b/tests/functional/adapter/test_constraints.py index ea6c4a21d..b0ce281c0 100644 --- a/tests/functional/adapter/test_constraints.py +++ b/tests/functional/adapter/test_constraints.py @@ -79,6 +79,7 @@ class TestIncrementalConstraintsColumnsEqualFirebolt( pass +@mark.skip(reason='Firebolt does not support foreign key') class TestConstraintsRuntimeDdlEnforcementFirebolt( BaseConstraintsRuntimeDdlEnforcement ): @@ -92,6 +93,7 @@ class TestConstraintsRollbackFirebolt(BaseConstraintsRollback): pass +@mark.skip(reason='Firebolt does not support foreign key') class TestIncrementalConstraintsRuntimeDdlEnforcementFirebolt( BaseIncrementalConstraintsRuntimeDdlEnforcement ):