We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 633da22 commit 9436528Copy full SHA for 9436528
tests/settings.py
@@ -89,15 +89,7 @@
89
"tests",
90
)
91
92
-PASSWORD_HASHERS = [
93
- "django.contrib.auth.hashers.PBKDF2PasswordHasher",
94
- "django.contrib.auth.hashers.PBKDF2SHA1PasswordHasher",
95
- "django.contrib.auth.hashers.Argon2PasswordHasher",
96
- "django.contrib.auth.hashers.BCryptSHA256PasswordHasher",
97
- "django.contrib.auth.hashers.ScryptPasswordHasher",
98
- "tests.custom_hasher.MyPBKDF2PasswordHasher",
99
-]
100
-
++PASSWORD_HASHERS = django.conf.settings.PASSWORD_HASHERS + ["tests.custom_hasher.MyPBKDF2PasswordHasher"]
101
LOGGING = {
102
"version": 1,
103
"disable_existing_loggers": False,
0 commit comments