From 0d516c0bd6745c03c77496e64cb49a7fe9af668e Mon Sep 17 00:00:00 2001 From: Agate Date: Tue, 5 Jul 2022 14:02:43 +0200 Subject: [PATCH] ci: reduce test execution time by changing password hasher (#67020) --- tests/settings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/settings.py b/tests/settings.py index 2b30aaea..08604dc5 100644 --- a/tests/settings.py +++ b/tests/settings.py @@ -110,3 +110,5 @@ USER_PROFILE_CONFIG = { } LEGACY_URLS_MAPPING = {'old.org': 'new.org'} + +PASSWORD_HASHERS = ["django.contrib.auth.hashers.MD5PasswordHasher"]