mirror of
https://github.com/Hopiu/django.git
synced 2026-03-30 21:00:24 +00:00
Fixed lockups in jenkins, refs #19546.
This commit is contained in:
parent
e6949373b0
commit
ce580dd8ea
1 changed files with 2 additions and 1 deletions
|
|
@ -283,7 +283,8 @@ class DummyBackendTest(unittest.TestCase):
|
|||
class DeprecationDisplayTest(AdminScriptTestCase):
|
||||
# tests for 19546
|
||||
def setUp(self):
|
||||
settings = {'INSTALLED_APPS': '("regressiontests.test_runner.deprecation_app",)' }
|
||||
settings = {'INSTALLED_APPS': '("regressiontests.test_runner.deprecation_app",)',
|
||||
'DATABASES': '{"default": {"ENGINE":"django.db.backends.sqlite3", "NAME":":memory:"}}' }
|
||||
self.write_settings('settings.py', sdict=settings)
|
||||
|
||||
def tearDown(self):
|
||||
|
|
|
|||
Loading…
Reference in a new issue