Use MD5PasswordHasher for tests

This commit changes the password hasher for test runs to the
MD5PasswordHasher to speed up password hashing during test runs.
This commit is contained in:
Jan Dittberner 2015-11-28 19:00:03 +00:00
parent 1cfd4327da
commit f2c3f64a87
1 changed files with 4 additions and 0 deletions

View File

@ -1,3 +1,7 @@
from __future__ import absolute_import
from .base import *
PASSWORD_HASHERS = (
'django.contrib.auth.hashers.MD5PasswordHasher',
)