Added tests settings

This commit is contained in:
Felipe Martín 2013-05-20 14:03:07 +02:00
parent 656670d284
commit a931d35324
1 changed files with 12 additions and 0 deletions

12
tests/local_settings.py Normal file
View File

@ -0,0 +1,12 @@
LOCAL_SETTINGS = True
from herobrine.settings import *
DEBUG = True
TEMPLATE_DEBUG = DEBUG
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'dev_ddbb.sqlite',
}
}