mybuddy/babybuddy/settings/test.py

17 lines
429 B
Python
Raw Normal View History

2021-06-22 03:47:57 +00:00
from .base import *
SECRET_KEY = 'TESTS'
# Password hasher configuration
# See https://docs.djangoproject.com/en/3.2/ref/settings/#password-hashers
# See https://docs.djangoproject.com/en/3.2/topics/testing/overview/#password-hashing
PASSWORD_HASHERS = [
'django.contrib.auth.hashers.MD5PasswordHasher',
]
# Axes configuration
# See https://django-axes.readthedocs.io/en/latest/4_configuration.html
AXES_ENABLED = False