From 8e89dfe1c24540d33b577377af633694ff57f505 Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Thu, 14 Apr 2022 12:54:27 +0200 Subject: Fixed various tests on MySQL with MyISAM storage engine. --- tests/backends/tests.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'tests/backends') diff --git a/tests/backends/tests.py b/tests/backends/tests.py index 85b0e55cb0..9303089b51 100644 --- a/tests/backends/tests.py +++ b/tests/backends/tests.py @@ -694,8 +694,12 @@ class FkConstraintsTests(TransactionTestCase): a.reporter_id = 30 with connection.constraint_checks_disabled(): a.save() - with self.assertRaises(IntegrityError): + try: connection.check_constraints(table_names=[Article._meta.db_table]) + except IntegrityError: + pass + else: + self.skipTest("This backend does not support integrity checks.") transaction.set_rollback(True) def test_check_constraints_sql_keywords(self): @@ -705,8 +709,12 @@ class FkConstraintsTests(TransactionTestCase): obj.reporter_id = 30 with connection.constraint_checks_disabled(): obj.save() - with self.assertRaises(IntegrityError): + try: connection.check_constraints(table_names=["order"]) + except IntegrityError: + pass + else: + self.skipTest("This backend does not support integrity checks.") transaction.set_rollback(True) -- cgit v1.3