From a931d35324fad7b18ade65017b888324e8332616 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felipe=20Mart=C3=ADn?= Date: Mon, 20 May 2013 14:03:07 +0200 Subject: [PATCH] Added tests settings --- tests/local_settings.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tests/local_settings.py diff --git a/tests/local_settings.py b/tests/local_settings.py new file mode 100644 index 0000000..8192161 --- /dev/null +++ b/tests/local_settings.py @@ -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', + } +}