From e403c6c5d1d03a699a2241f599635dbf2965fe8a Mon Sep 17 00:00:00 2001 From: Josh Wills Date: Tue, 16 Apr 2024 09:19:00 -0700 Subject: [PATCH] Skip this test in BV for the moment --- tests/functional/adapter/test_constraints.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/functional/adapter/test_constraints.py b/tests/functional/adapter/test_constraints.py index 4b941cb9..710ced88 100644 --- a/tests/functional/adapter/test_constraints.py +++ b/tests/functional/adapter/test_constraints.py @@ -66,7 +66,7 @@ class TestTableConstraintsRuntimeDdlEnforcement( pass -@pytest.mark.skip_profile("md") +@pytest.mark.skip_profile("md", "buenavista") class TestTableConstraintsRollback(DuckDBColumnEqualSetup, BaseConstraintsRollback): @pytest.fixture(scope="class") def expected_error_messages(self): @@ -82,7 +82,7 @@ def expected_error_messages(self): return ["NOT NULL constraint failed"] -@pytest.mark.skip_profile("md") +@pytest.mark.skip_profile("md", "buenavista") class TestIncrementalConstraintsRollback( DuckDBColumnEqualSetup, BaseIncrementalConstraintsRollback ):