File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 12
12
"last_login" : " 2010-08-14T01:51:05+00:00" ,
13
13
"groups" : [],
14
14
"user_permissions" : [],
15
- "password" : " pbkdf2_sha256$30000$Vs87OlKZEzCb$nUw1o5pGQw7ff/QhnleSpUOupBaT1DogZrVaoZyQRyc= " ,
15
+ "password" : " md5$HLrlTqy6uMMO08qQZ75Z4K$65492930ade63899137c23db46cb2253 " ,
16
16
17
17
"date_joined" : " 2010-08-14T01:50:58+00:00"
18
18
}
30
30
"last_login" : " 2010-08-14T01:51:05+00:00" ,
31
31
"groups" : [],
32
32
"user_permissions" : [],
33
- "password" : " pbkdf2_sha256$30000$Vs87OlKZEzCb$nUw1o5pGQw7ff/QhnleSpUOupBaT1DogZrVaoZyQRyc= " ,
33
+ "password" : " md5$HLrlTqy6uMMO08qQZ75Z4K$65492930ade63899137c23db46cb2253 " ,
34
34
35
35
"date_joined" : " 2010-08-14T01:50:58+00:00"
36
36
}
48
48
"last_login" : " 2010-08-14T01:51:05+00:00" ,
49
49
"groups" : [],
50
50
"user_permissions" : [],
51
- "password" : " pbkdf2_sha256$30000$Vs87OlKZEzCb$nUw1o5pGQw7ff/QhnleSpUOupBaT1DogZrVaoZyQRyc= " ,
51
+ "password" : " md5$HLrlTqy6uMMO08qQZ75Z4K$65492930ade63899137c23db46cb2253 " ,
52
52
53
53
"date_joined" : " 2010-08-14T01:50:58+00:00"
54
54
}
Original file line number Diff line number Diff line change @@ -37,6 +37,12 @@ class CommunityTestSettings(CommunityBaseSettings):
37
37
}
38
38
}
39
39
40
+ # Speed up tests by using a fast password hasher.
41
+ # https://docs.djangoproject.com/en/5.0/topics/testing/overview/#speeding-up-the-tests.
42
+ PASSWORD_HASHERS = [
43
+ "django.contrib.auth.hashers.MD5PasswordHasher" ,
44
+ ]
45
+
40
46
@property
41
47
def DATABASES (self ): # noqa
42
48
return {
You can’t perform that action at this time.
0 commit comments