summaryrefslogtreecommitdiff
path: root/tests/model_forms/tests.py
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2025-06-13 02:11:04 -0400
committerGitHub <noreply@github.com>2025-06-13 08:11:04 +0200
commit3306b7283bc76a4e0cd647776fdc8b02d38d0935 (patch)
treeebedb644e1b63b88331a1a716966d0e26d84df28 /tests/model_forms/tests.py
parentf2f6046c0f92ff1faed057da0711ac478eef439c (diff)
Refs #35676 -- Added supports_table_check_constraints skip to model_forms tests.
Diffstat (limited to 'tests/model_forms/tests.py')
-rw-r--r--tests/model_forms/tests.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/model_forms/tests.py b/tests/model_forms/tests.py
index 59e5ee0242..57249820ed 100644
--- a/tests/model_forms/tests.py
+++ b/tests/model_forms/tests.py
@@ -3721,6 +3721,7 @@ class ModelToDictTests(TestCase):
self.assertEqual(data, [blue])
+@skipUnlessDBFeature("supports_table_check_constraints")
class ConstraintValidationTests(TestCase):
def test_unique_constraint_refs_excluded_field(self):
obj = ConstraintsModel.objects.create(name="product", price="1.00")