Files
mayan-edms/mayan/settings/testing/base.py
2017-06-16 18:15:12 -04:00

10 lines
275 B
Python

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