datatracker/ietf/settings_sqlitetest.py
Ole Laursen e1bd47b509 Add ietf. qualifier to settings import, this fixes a weird bug where
model files apparently get the wrong settings
 - Legacy-Id: 6216
2013-09-20 11:02:06 +00:00

15 lines
366 B
Python

# Standard settings except we use SQLite, this is useful for speeding
# up tests that depend on the test database, try for instance:
#
# ./manage.py test --settings=settings_sqlitetest doc.ChangeStateTestCase
#
from ietf.settings import *
DATABASES = {
'default': {
'NAME': 'test.db',
'ENGINE': 'django.db.backends.sqlite3',
},
}