diff options
| author | Claude Paroz <claude@2xlibre.net> | 2014-10-21 20:54:32 +0200 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2014-10-21 20:54:32 +0200 |
| commit | bbc3505ef81768aa2afac8f73e6d45b5e8000c55 (patch) | |
| tree | e935de6f7c37862554e4023af2d2beec0213fbb8 /tests/test_runner | |
| parent | 8b4cc9df9c0760eb4896f1423b6119bdad5674c6 (diff) | |
Removed unneeded override_system_checks
Refs #23685.
Diffstat (limited to 'tests/test_runner')
| -rw-r--r-- | tests/test_runner/tests.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/test_runner/tests.py b/tests/test_runner/tests.py index aec209a852..55e7a82a96 100644 --- a/tests/test_runner/tests.py +++ b/tests/test_runner/tests.py @@ -11,7 +11,6 @@ from django.core.management import call_command from django.db.backends.dummy.base import DatabaseCreation from django.test import runner, TestCase, TransactionTestCase, skipUnlessDBFeature from django.test.testcases import connections_support_transactions -from django.test.utils import override_system_checks from django.utils import six from admin_scripts.tests import AdminScriptTestCase @@ -225,9 +224,6 @@ class Sqlite3InMemoryTestDbs(TestCase): available_apps = [] - # `setup_databases` triggers system check framework, but we do not want to - # perform checks. - @override_system_checks([]) @unittest.skipUnless(all(db.connections[conn].vendor == 'sqlite' for conn in db.connections), "This is an sqlite-specific issue") def test_transaction_support(self): |
