summaryrefslogtreecommitdiff
path: root/tests/transactions
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2022-04-14 09:53:31 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2022-04-18 07:05:52 +0200
commit331a460f8f2e4f447b68fba491464b68c9b21fd1 (patch)
treeca32188e183f2d1bd28c7d8a96e3ed63dbda04de /tests/transactions
parente12670016bbcebcc0d89c2ac4a0121951181fbae (diff)
Fixed DatabaseFeatures.uses_savepoints/can_release_savepoints and related tests with MyISAM storage engine.
Diffstat (limited to 'tests/transactions')
-rw-r--r--tests/transactions/tests.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/transactions/tests.py b/tests/transactions/tests.py
index 342434666e..a528ab22e5 100644
--- a/tests/transactions/tests.py
+++ b/tests/transactions/tests.py
@@ -370,6 +370,7 @@ class AtomicErrorsTests(TransactionTestCase):
self.assertEqual(Reporter.objects.count(), 0)
+@skipUnlessDBFeature("uses_savepoints")
@skipUnless(connection.vendor == "mysql", "MySQL-specific behaviors")
class AtomicMySQLTests(TransactionTestCase):