Use simple password hasher to speed up tests.

Before: Ran 346 tests in 156.928s
After: Ran 346 tests in 144.324s
This commit is contained in:
Roberto Rosario
2016-06-08 19:30:45 -04:00
parent 41f68cf435
commit 9ffcfeb49b

View File

@@ -7,3 +7,7 @@ TEMPLATE_LOADERS = (
'django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader'
)
PASSWORD_HASHERS = (
'django.contrib.auth.hashers.MD5PasswordHasher',
)