diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-04-14 09:53:31 +0200 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-04-18 07:05:52 +0200 |
| commit | 331a460f8f2e4f447b68fba491464b68c9b21fd1 (patch) | |
| tree | ca32188e183f2d1bd28c7d8a96e3ed63dbda04de /tests/transactions | |
| parent | e12670016bbcebcc0d89c2ac4a0121951181fbae (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.py | 1 |
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): |
