forked from django-cms/django-filer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_settings.py
75 lines (66 loc) · 1.91 KB
/
test_settings.py
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
# -*- coding: utf-8 -*-
from __future__ import absolute_import
import os
from tempfile import mkdtemp
def gettext(s):
return s
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
HELPER_SETTINGS = {
'NOSE_ARGS': [
'-s',
],
'ROOT_URLCONF': 'filer.test_utils.urls',
'INSTALLED_APPS': [
'easy_thumbnails',
'mptt',
'filer',
'filer.test_utils.test_app',
],
'LANGUAGE_CODE': 'en',
'LANGUAGES': (
('en', gettext('English')),
('fr_FR', gettext('French')),
('it', gettext('Italiano')),
),
'CMS_LANGUAGES': {
1: [
{
'code': 'en',
'name': gettext('English'),
'public': True,
},
{
'code': 'it',
'name': gettext('Italiano'),
'public': True,
},
{
'code': 'fr_FR',
'name': gettext('French'),
'public': True,
},
],
'default': {
'hide_untranslated': False,
},
},
'THUMBNAIL_PROCESSORS': (
'easy_thumbnails.processors.colorspace',
'easy_thumbnails.processors.autocrop',
'filer.thumbnail_processors.scale_and_crop_with_subject_location',
'easy_thumbnails.processors.filters',
),
'FILE_UPLOAD_TEMP_DIR': mkdtemp(),
'FILER_IMAGE_MODEL': False,
'TEMPLATE_DIRS': (os.path.join(BASE_DIR, 'django-filer', 'filer',
'test_utils', 'templates'),),
'FILER_CANONICAL_URL': 'test-path/',
}
if os.environ.get('CUSTOM_IMAGE', False):
HELPER_SETTINGS['FILER_IMAGE_MODEL'] = os.environ.get('CUSTOM_IMAGE', False)
HELPER_SETTINGS['INSTALLED_APPS'].append('filer.test_utils.custom_image')
def run():
from djangocms_helper import runner
runner.run('filer')
if __name__ == "__main__":
run()