mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
The warning is: RemovedInDjango50Warning: The default value of USE_TZ will change from False to True in Django 5.0. Set USE_TZ to False in your project settings if you want to keep the current default behavior. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
63 lines
1.4 KiB
Python
63 lines
1.4 KiB
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""
|
|
Django settings for test modules.
|
|
"""
|
|
|
|
import os
|
|
|
|
# Workaround for django-simple-captcha 0.5.6 not being compatible with
|
|
# Django 3.2. 0.5.14 is almost there in Debian. Workaround only until then.
|
|
import django.utils.encoding
|
|
|
|
django.utils.encoding.python_2_unicode_compatible = lambda x: x
|
|
|
|
TEST_DATA_DIR = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
AXES_ENABLED = False
|
|
|
|
CACHES = {
|
|
'default': {
|
|
'BACKEND': 'django.core.cache.backends.dummy.DummyCache'
|
|
}
|
|
}
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
'NAME': os.path.join(TEST_DATA_DIR, 'plinth.sqlite3'),
|
|
}
|
|
}
|
|
|
|
INSTALLED_APPS = [
|
|
'axes',
|
|
'captcha',
|
|
'bootstrapform',
|
|
'django.contrib.auth',
|
|
'django.contrib.contenttypes',
|
|
'django.contrib.messages',
|
|
'stronghold',
|
|
'plinth',
|
|
]
|
|
|
|
# These are included here solely to suppress Django warnings
|
|
# during testing setup
|
|
MIDDLEWARE = (
|
|
'django.contrib.sessions.middleware.SessionMiddleware',
|
|
'django.contrib.auth.middleware.AuthenticationMiddleware',
|
|
'django.contrib.messages.middleware.MessageMiddleware',
|
|
)
|
|
|
|
ROOT_URLCONF = 'plinth.tests.data.urls'
|
|
|
|
SECRET_KEY = 'django_tests_secret_key'
|
|
|
|
TEMPLATES = [{
|
|
'BACKEND': 'django.template.backends.django.DjangoTemplates',
|
|
'APP_DIRS': True,
|
|
'DIRS': ['plinth/tests/data/templates/'],
|
|
}]
|
|
|
|
TIME_ZONE = 'UTC'
|
|
|
|
USE_TZ = True
|