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', + } +}