mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 13:32:15 +00:00
9 lines
189 B
Python
9 lines
189 B
Python
from django.conf import settings
|
|
import django
|
|
|
|
def pytest_configure():
|
|
settings.PASSWORD_HASHERS = (
|
|
'django.contrib.auth.hashers.MD5PasswordHasher',
|
|
)
|
|
django.setup()
|