Commit forgotten file

This commit is contained in:
Aurélien Bompard 2014-06-16 16:07:01 +00:00
parent 55c6574dc6
commit 6adbf5b2e3

View file

@ -0,0 +1,19 @@
#-*- coding: utf-8 -*-
"""
Copy of the Django settings file, but with databases set for unit tests.
"""
from settings import *
try:
from settings_local import *
except ImportError:
pass
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': ':memory:',
}
}
KITTYSTORE_URL = 'sqlite:'