mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-05-22 14:01:53 +00:00
Django 1.9 now automatically imports all models in templatetags. This causes ImportErrors to be raised for users who do not have jinja2 installed.
170 lines
5.2 KiB
Python
170 lines
5.2 KiB
Python
import os
|
|
|
|
import django
|
|
from django.conf import global_settings
|
|
|
|
|
|
WAGTAIL_ROOT = os.path.dirname(__file__)
|
|
STATIC_ROOT = os.path.join(WAGTAIL_ROOT, 'test-static')
|
|
MEDIA_ROOT = os.path.join(WAGTAIL_ROOT, 'test-media')
|
|
MEDIA_URL = '/media/'
|
|
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': os.environ.get('DATABASE_ENGINE', 'django.db.backends.sqlite3'),
|
|
'NAME': os.environ.get('DATABASE_NAME', 'wagtail'),
|
|
'USER': os.environ.get('DATABASE_USER', None),
|
|
'PASSWORD': os.environ.get('DATABASE_PASS', None),
|
|
'HOST': os.environ.get('DATABASE_HOST', None),
|
|
|
|
'TEST': {
|
|
'NAME': os.environ.get('DATABASE_NAME', None),
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
SECRET_KEY = 'not needed'
|
|
|
|
ROOT_URLCONF = 'wagtail.tests.urls'
|
|
|
|
STATIC_URL = '/static/'
|
|
STATIC_ROOT = STATIC_ROOT
|
|
|
|
STATICFILES_FINDERS = (
|
|
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
|
|
'compressor.finders.CompressorFinder',
|
|
)
|
|
|
|
USE_TZ = True
|
|
|
|
if django.VERSION >= (1, 8):
|
|
TEMPLATES = [
|
|
{
|
|
'BACKEND': 'django.template.backends.django.DjangoTemplates',
|
|
'DIRS': [],
|
|
'APP_DIRS': True,
|
|
'OPTIONS': {
|
|
'context_processors': [
|
|
'django.template.context_processors.debug',
|
|
'django.template.context_processors.request',
|
|
'django.contrib.auth.context_processors.auth',
|
|
'django.contrib.messages.context_processors.messages',
|
|
'django.template.context_processors.request',
|
|
'wagtail.tests.context_processors.do_not_use_static_url',
|
|
'wagtail.contrib.settings.context_processors.settings',
|
|
],
|
|
},
|
|
},
|
|
{
|
|
'BACKEND': 'django.template.backends.jinja2.Jinja2',
|
|
'APP_DIRS': True,
|
|
'OPTIONS': {
|
|
'extensions': [
|
|
'wagtail.wagtailcore.jinja2tags.core',
|
|
'wagtail.wagtailadmin.jinja2tags.userbar',
|
|
'wagtail.wagtailimages.jinja2tags.images',
|
|
],
|
|
},
|
|
},
|
|
]
|
|
else:
|
|
TEMPLATE_CONTEXT_PROCESSORS = global_settings.TEMPLATE_CONTEXT_PROCESSORS + (
|
|
'django.core.context_processors.request',
|
|
'wagtail.tests.context_processors.do_not_use_static_url',
|
|
'wagtail.contrib.settings.context_processors.settings',
|
|
)
|
|
|
|
MIDDLEWARE_CLASSES = (
|
|
'django.middleware.common.CommonMiddleware',
|
|
'django.contrib.sessions.middleware.SessionMiddleware',
|
|
'django.middleware.csrf.CsrfViewMiddleware',
|
|
'django.contrib.auth.middleware.AuthenticationMiddleware',
|
|
'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
|
|
'django.contrib.messages.middleware.MessageMiddleware',
|
|
'django.middleware.clickjacking.XFrameOptionsMiddleware',
|
|
|
|
'wagtail.wagtailcore.middleware.SiteMiddleware',
|
|
|
|
'wagtail.wagtailredirects.middleware.RedirectMiddleware',
|
|
)
|
|
|
|
INSTALLED_APPS = (
|
|
# Install wagtailredirects with its appconfig
|
|
# Theres nothing special about wagtailredirects, we just need to have one
|
|
# app which uses AppConfigs to test that hooks load properly
|
|
'wagtail.wagtailredirects.apps.WagtailRedirectsAppConfig',
|
|
|
|
'wagtail.tests.testapp',
|
|
'wagtail.tests.demosite',
|
|
'wagtail.tests.customuser',
|
|
'wagtail.tests.snippets',
|
|
'wagtail.tests.routablepage',
|
|
'wagtail.tests.search',
|
|
'wagtail.contrib.wagtailstyleguide',
|
|
'wagtail.contrib.wagtailsitemaps',
|
|
'wagtail.contrib.wagtailroutablepage',
|
|
'wagtail.contrib.wagtailfrontendcache',
|
|
'wagtail.contrib.wagtailapi',
|
|
'wagtail.contrib.wagtailsearchpromotions',
|
|
'wagtail.contrib.settings',
|
|
'wagtail.wagtailforms',
|
|
'wagtail.wagtailsearch',
|
|
'wagtail.wagtailembeds',
|
|
'wagtail.wagtailimages',
|
|
'wagtail.wagtailsites',
|
|
'wagtail.wagtailusers',
|
|
'wagtail.wagtailsnippets',
|
|
'wagtail.wagtaildocs',
|
|
'wagtail.wagtailadmin',
|
|
'wagtail.wagtailcore',
|
|
|
|
'taggit',
|
|
'compressor',
|
|
|
|
'django.contrib.admin',
|
|
'django.contrib.auth',
|
|
'django.contrib.contenttypes',
|
|
'django.contrib.sessions',
|
|
'django.contrib.messages',
|
|
'django.contrib.staticfiles',
|
|
)
|
|
|
|
|
|
# Using DatabaseCache to make sure that the cache is cleared between tests.
|
|
# This prevents false-positives in some wagtail core tests where we are
|
|
# changing the 'wagtail_root_paths' key which may cause future tests to fail.
|
|
CACHES = {
|
|
'default': {
|
|
'BACKEND': 'django.core.cache.backends.db.DatabaseCache',
|
|
'LOCATION': 'cache',
|
|
}
|
|
}
|
|
|
|
PASSWORD_HASHERS = (
|
|
'django.contrib.auth.hashers.MD5PasswordHasher', # don't use the intentionally slow default password hasher
|
|
)
|
|
|
|
COMPRESS_ENABLED = False # disable compression so that we can run tests on the content of the compress tag
|
|
|
|
|
|
WAGTAILSEARCH_BACKENDS = {
|
|
'default': {
|
|
'BACKEND': 'wagtail.wagtailsearch.backends.db',
|
|
}
|
|
}
|
|
|
|
AUTH_USER_MODEL = 'customuser.CustomUser'
|
|
|
|
if 'ELASTICSEARCH_URL' in os.environ:
|
|
WAGTAILSEARCH_BACKENDS['elasticsearch'] = {
|
|
'BACKEND': 'wagtail.wagtailsearch.backends.elasticsearch',
|
|
'URLS': [os.environ['ELASTICSEARCH_URL']],
|
|
'TIMEOUT': 10,
|
|
'max_retries': 1,
|
|
'AUTO_UPDATE': False,
|
|
}
|
|
|
|
|
|
WAGTAIL_SITE_NAME = "Test Site"
|