From b0d8085c67884f36c8fb4af5f1fdae844e4700f7 Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Sat, 9 Jun 2012 21:14:13 +0200 Subject: [PATCH] Added note about including fixtures hashing algorithm Refs #18157. --- docs/topics/testing.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/topics/testing.txt b/docs/topics/testing.txt index 95fb6f8eb2..f7aadd68f3 100644 --- a/docs/topics/testing.txt +++ b/docs/topics/testing.txt @@ -557,6 +557,9 @@ to a faster hashing algorithm:: 'django.contrib.auth.hashers.MD5PasswordHasher', ) +Don't forget to also include in :setting:`PASSWORD_HASHERS` any hashing +algorithm used in fixtures, if any. + Testing tools =============