Files
mayan-edms/mayan/settings/testing/base.py
Roberto Rosario 2f2c5d5b09 Make tests import from local setting to inherit the user's overrides.
Force tests to enable the DEBUG variable.
2016-12-22 03:37:36 -04:00

11 lines
288 B
Python

from __future__ import absolute_import, unicode_literals
from .. import * # NOQA
DEBUG = True
INSTALLED_APPS += ('test_without_migrations',)
TEMPLATES[0]['OPTIONS']['loaders'] = (
'django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader',
)