Fix parler configuration in tests
This commit is contained in:
parent
3b91b7e29a
commit
ec90102bce
1 changed files with 70 additions and 57 deletions
127
cms_helper.py
127
cms_helper.py
|
@ -1,65 +1,78 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
import sys
|
||||
from tempfile import mkdtemp
|
||||
gettext = lambda s: s
|
||||
|
||||
HELPER_SETTINGS = {
|
||||
'NOSE_ARGS':[
|
||||
'-s',
|
||||
],
|
||||
'ROOT_URLCONF':'tests.test_utils.urls',
|
||||
'INSTALLED_APPS':[
|
||||
'django_nose',
|
||||
'filer',
|
||||
'parler',
|
||||
'taggit',
|
||||
'meta',
|
||||
'meta_mixin',
|
||||
'easy_thumbnails',
|
||||
'djangocms_text_ckeditor',
|
||||
'cmsplugin_filer_image',
|
||||
'django_select2',
|
||||
'taggit_autosuggest',
|
||||
'djangocms_blog',
|
||||
],
|
||||
'LANGUAGE_CODE':'en',
|
||||
'LANGUAGES':(
|
||||
('en', gettext('English')),
|
||||
('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',
|
||||
'name': gettext('French'),
|
||||
'public': True,
|
||||
},
|
||||
],
|
||||
'default': {
|
||||
'hide_untranslated': False,
|
||||
'NOSE_ARGS': [
|
||||
'-s',
|
||||
],
|
||||
'ROOT_URLCONF': 'tests.test_utils.urls',
|
||||
'INSTALLED_APPS': [
|
||||
'admin_enhancer',
|
||||
'filer',
|
||||
'parler',
|
||||
'taggit',
|
||||
'meta',
|
||||
'meta_mixin',
|
||||
'easy_thumbnails',
|
||||
'djangocms_text_ckeditor',
|
||||
'cmsplugin_filer_image',
|
||||
'django_select2',
|
||||
'taggit_autosuggest',
|
||||
'djangocms_blog',
|
||||
],
|
||||
'LANGUAGE_CODE': 'en',
|
||||
'LANGUAGES': (
|
||||
('en', gettext('English')),
|
||||
('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',
|
||||
'name': gettext('French'),
|
||||
'public': True,
|
||||
},
|
||||
],
|
||||
'default': {
|
||||
'hide_untranslated': False,
|
||||
},
|
||||
'META_SITE_PROTOCOL':'http',
|
||||
'META_SITE_DOMAIN':'example.com',
|
||||
'META_USE_OG_PROPERTIES':True,
|
||||
'META_USE_TWITTER_PROPERTIES':True,
|
||||
'META_USE_GOOGLEPLUS_PROPERTIES':True,
|
||||
'THUMBNAIL_PROCESSORS':(
|
||||
'easy_thumbnails.processors.colorspace',
|
||||
'easy_thumbnails.processors.autocrop',
|
||||
'filer.thumbnail_processors.scale_and_crop_with_subject_location',
|
||||
'easy_thumbnails.processors.filters',
|
||||
},
|
||||
'PARLER_LANGUAGES': {
|
||||
1: (
|
||||
{'code': 'en'},
|
||||
{'code': 'it'},
|
||||
{'code': 'fr'},
|
||||
),
|
||||
'FILE_UPLOAD_TEMP_DIR':mkdtemp()
|
||||
|
||||
}
|
||||
'default': {
|
||||
'fallback': 'en',
|
||||
'hide_untranslated': False,
|
||||
}
|
||||
},
|
||||
'META_SITE_PROTOCOL': 'http',
|
||||
'META_SITE_DOMAIN': 'example.com',
|
||||
'META_USE_OG_PROPERTIES': True,
|
||||
'META_USE_TWITTER_PROPERTIES': True,
|
||||
'META_USE_GOOGLEPLUS_PROPERTIES': True,
|
||||
'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(),
|
||||
}
|
||||
if 'test' in sys.argv:
|
||||
HELPER_SETTINGS['INSTALLED_APPS'].append('django_nose')
|
Loading…
Reference in a new issue