1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
import os
from tests.jinja2 import environment
SITE_ID = 1
DATABASE_ENGINE = 'sqlite3'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': ':memory:',
}
}
INSTALLED_APPS = [
'django.contrib.contenttypes',
'django.contrib.sites',
'django.contrib.auth',
'django.contrib.admin',
'django.contrib.staticfiles',
'sass_processor',
'tests',
]
TEMPLATES = [
{
'NAME': 'django',
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.contrib.auth.context_processors.auth',
'django.template.context_processors.debug',
'django.template.context_processors.i18n',
'django.template.context_processors.media',
'django.template.context_processors.static',
'django.template.context_processors.tz',
'django.contrib.messages.context_processors.messages',
],
},
},
{
'NAME': 'jinja2',
'BACKEND': 'django.template.backends.jinja2.Jinja2',
'APP_DIRS': True,
'OPTIONS': {
'environment': 'tests.jinja2.environment'
},
}
]
COMPRESS_JINJA2_GET_ENVIRONMENT = environment
MIDDLEWARE_CLASSES = (
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
#'django.contrib.auth.middleware.AuthenticationMiddleware',
)
USE_TZ = True
SECRET_KEY = 'secret'
STATIC_URL = '/static/'
PROJECT_ROOT = os.path.abspath(os.path.join(__file__, os.path.pardir))
STATICFILES_FINDERS = [
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
'sass_processor.finders.CssFinder',
]
STATICFILES_DIRS = [
os.path.join(PROJECT_ROOT, 'static'),
]
SASS_PROCESSOR_ENABLED = True
SASS_PROCESSOR_CUSTOM_FUNCTIONS = {
'get-width': 'tests.get_width',
'get-margins': 'tests.get_margins',
'get-plain-color': 'tests.get_plain_color',
}
SASS_BLUE_COLOR = '#0000ff'
STATIC_ROOT = os.path.join(os.path.dirname(__file__), "tmpstatic")
|