diff --git a/mayan/settings/testing/base.py b/mayan/settings/testing/base.py index 20e0329014..663ff4fb9b 100644 --- a/mayan/settings/testing/base.py +++ b/mayan/settings/testing/base.py @@ -1,9 +1,10 @@ from __future__ import absolute_import, unicode_literals -from ..base import * # NOQA +from .. import * # NOQA +DEBUG = True INSTALLED_APPS += ('test_without_migrations',) -TEMPLATE_LOADERS = ( +TEMPLATES[0]['OPTIONS']['loaders'] = ( 'django.template.loaders.filesystem.Loader', - 'django.template.loaders.app_directories.Loader' + 'django.template.loaders.app_directories.Loader', )