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