Use a filesystem db and add the sites app to fix a test failure.

This commit is contained in:
Jannis Leidel 2014-12-12 22:10:37 +01:00
parent 659bdfd889
commit a3c49c490f
1 changed files with 2 additions and 1 deletions

View File

@ -2,7 +2,7 @@
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': ':memory:',
'NAME': '/tmp/django-formtools-tests.db',
}
}
@ -10,6 +10,7 @@ INSTALLED_APPS = [
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'formtools',
'tests.wizard.wizardtests',
]