gva/gnuviechadmin/gnuviechadmin/settings/test.py
Jan Dittberner f2c3f64a87 Use MD5PasswordHasher for tests
This commit changes the password hasher for test runs to the
MD5PasswordHasher to speed up password hashing during test runs.
2015-11-28 19:00:03 +00:00

8 lines
137 B
Python

from __future__ import absolute_import
from .base import *
PASSWORD_HASHERS = (
'django.contrib.auth.hashers.MD5PasswordHasher',
)