From b6ad8b687adf011245270df17a38c1a42792e3d7 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Fri, 26 Jul 2024 11:01:48 -0400 Subject: [PATCH] Added missing skips in constraint tests. --- tests/constraints/tests.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/constraints/tests.py b/tests/constraints/tests.py index 31c5d64652..00c3d958e3 100644 --- a/tests/constraints/tests.py +++ b/tests/constraints/tests.py @@ -896,6 +896,7 @@ class UniqueConstraintTests(TestCase): ChildUniqueConstraintProduct(name=self.p1.name, color=self.p1.color), ) + @skipUnlessDBFeature("supports_table_check_constraints") def test_validate_fields_unattached(self): Product.objects.create(price=42) constraint = models.UniqueConstraint(fields=["price"], name="uniq_prices") @@ -1070,6 +1071,7 @@ class UniqueConstraintTests(TestCase): is_not_null_constraint.validate(Product, Product(price=4, discounted_price=3)) is_not_null_constraint.validate(Product, Product(price=2, discounted_price=1)) + @skipUnlessDBFeature("supports_table_check_constraints") def test_validate_nulls_distinct_fields(self): Product.objects.create(price=42) constraint = models.UniqueConstraint( @@ -1083,6 +1085,7 @@ class UniqueConstraintTests(TestCase): with self.assertRaisesMessage(ValidationError, msg): constraint.validate(Product, Product(price=None)) + @skipUnlessDBFeature("supports_table_check_constraints") def test_validate_nulls_distinct_expressions(self): Product.objects.create(price=42) constraint = models.UniqueConstraint(