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:
parent
1cfd4327da
commit
f2c3f64a87
1 changed files with 4 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
||||||
from __future__ import absolute_import
|
from __future__ import absolute_import
|
||||||
|
|
||||||
from .base import *
|
from .base import *
|
||||||
|
|
||||||
|
PASSWORD_HASHERS = (
|
||||||
|
'django.contrib.auth.hashers.MD5PasswordHasher',
|
||||||
|
)
|
||||||
|
|
Loading…
Reference in a new issue