From 79f244a1a591d9ade49ecc0a2309444dad824a8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Wed, 10 Aug 2022 18:49:20 +0200 Subject: [PATCH] ci: reduce test execution time by changing password hasher (#68111) --- tests/settings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/settings.py b/tests/settings.py index b65e3c1d..ec546d35 100644 --- a/tests/settings.py +++ b/tests/settings.py @@ -73,3 +73,5 @@ DATABASES = { LOGGED_REQUESTS_MAX_SIZE = 4999 LEGACY_URLS_MAPPING = {'old.org': 'new.org'} + +PASSWORD_HASHERS = ["django.contrib.auth.hashers.MD5PasswordHasher"]