Files
mayan-edms/mayan/settings/testing/base.py
Roberto Rosario 9ffcfeb49b Use simple password hasher to speed up tests.
Before: Ran 346 tests in 156.928s
After: Ran 346 tests in 144.324s
2016-06-08 19:30:45 -04:00

14 lines
337 B
Python

from __future__ import absolute_import, unicode_literals
from ..base import * # NOQA
INSTALLED_APPS += ('test_without_migrations',)
TEMPLATE_LOADERS = (
'django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader'
)
PASSWORD_HASHERS = (
'django.contrib.auth.hashers.MD5PasswordHasher',
)