django-imagekit/tests/settings.py

70 lines
1.7 KiB
Python
Raw Permalink Normal View History

import os
ADMINS = (
('test@example.com', 'TEST-R'),
)
BASE_PATH = os.path.abspath(os.path.dirname(__file__))
MEDIA_ROOT = os.path.normpath(os.path.join(BASE_PATH, 'media'))
2011-10-31 14:23:50 +00:00
# Django <= 1.2
DATABASE_ENGINE = 'sqlite3'
DATABASE_NAME = 'imagekit.db'
TEST_DATABASE_NAME = 'imagekit-test.db'
2011-10-31 14:23:50 +00:00
# Django >= 1.3
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'imagekit.db',
},
}
2013-03-14 03:41:28 +00:00
SECRET_KEY = '_uobce43e5osp8xgzle*yag2_16%y$sf*5(12vfg25hpnxik_*'
INSTALLED_APPS = [
'django.contrib.auth',
'django.contrib.contenttypes',
'imagekit',
2012-11-06 02:33:05 +00:00
'tests',
2012-10-25 03:30:37 +00:00
'django_nose',
]
TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'
NOSE_ARGS = [
'-s',
# When the tests are run --with-coverage, these args configure coverage
# reporting (requires coverage to be installed).
# Without the --with-coverage flag, they have no effect.
'--cover-tests',
'--cover-html',
'--cover-package=imagekit',
'--cover-html-dir=%s' % os.path.join(BASE_PATH, 'cover')
]
if os.getenv('TERM'):
NOSE_ARGS.append('--with-progressive')
CACHE_BACKEND = 'locmem://'
2016-07-10 22:34:50 +00:00
# Django >= 1.8
TEMPLATES = [
{
'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',
],
},
},
]