forked from django-fluent/django-fluent-contents
-
Notifications
You must be signed in to change notification settings - Fork 0
/
runtests.py
executable file
·126 lines (118 loc) · 4.72 KB
/
runtests.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#!/usr/bin/env python
import sys
import django
from django.conf import settings, global_settings as default_settings
from django.core.management import execute_from_command_line
from os import path
# Give feedback on used versions
sys.stderr.write('Using Python version {0} from {1}\n'.format(sys.version[:5], sys.executable))
sys.stderr.write('Using Django version {0} from {1}\n'.format(
django.get_version(),
path.dirname(path.abspath(django.__file__)))
)
if not settings.configured:
if django.VERSION >= (1, 8):
template_settings = dict(
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': (),
'OPTIONS': {
'loaders': (
'django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader',
),
'context_processors': (
'django.template.context_processors.debug',
'django.template.context_processors.i18n',
'django.template.context_processors.media',
'django.template.context_processors.request',
'django.template.context_processors.static',
'django.contrib.auth.context_processors.auth',
),
},
},
]
)
else:
template_settings = dict(
TEMPLATE_LOADERS = (
'django.template.loaders.app_directories.Loader',
'django.template.loaders.filesystem.Loader',
),
TEMPLATE_CONTEXT_PROCESSORS = list(default_settings.TEMPLATE_CONTEXT_PROCESSORS) + [
'django.core.context_processors.request',
],
)
settings.configure(
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': ':memory:'
}
},
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.messages',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.admin',
'fluent_contents',
'fluent_contents.plugins.code',
'fluent_contents.plugins.commentsarea',
#'fluent_contents.plugins.disquswidgets',
#'fluent_contents.plugins.formdesignerlink',
'fluent_contents.plugins.gist',
'fluent_contents.plugins.googledocsviewer',
'fluent_contents.plugins.iframe',
'fluent_contents.plugins.markup',
'fluent_contents.plugins.oembeditem',
'fluent_contents.plugins.picture',
'fluent_contents.plugins.rawhtml',
'fluent_contents.plugins.sharedcontent',
'fluent_contents.plugins.text',
#'fluent_contents.plugins.twitterfeed',
#'disqus',
'django_wysiwyg',
#'form_designer',
'fluent_contents.tests.testapp',
),
MIDDLEWARE_CLASSES = (
'django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'fluent_contents.middleware.HttpRedirectRequestMiddleware',
),
ROOT_URLCONF = 'fluent_contents.tests.testapp.urls',
TEST_RUNNER = 'django.test.simple.DjangoTestSuiteRunner' if django.VERSION < (1,6) else 'django.test.runner.DiscoverRunner',
SITE_ID = 3,
FLUENT_CONTENTS_CACHE_OUTPUT = True,
FLUENT_CONTENTS_CACHE_PLACEHOLDER_OUTPUT = True,
#DISQUS_API_KEY = 'test',
#DISQUS_WEBSITE_SHORTNAME = 'test',
STATIC_URL = '/static/',
SILENCED_SYSTEM_CHECKS = (
'fields.E210', # ImageField needs to have PIL/Pillow installed
),
**template_settings
)
if django.VERSION < (1,6):
# Different test runner, needs to name all apps,
# it doesn't locate a tests*.py in each subfolder.
DEFAULT_TEST_APPS = [
'fluent_contents',
'text',
]
else:
DEFAULT_TEST_APPS = [
'fluent_contents',
]
def runtests():
other_args = list(filter(lambda arg: arg.startswith('-'), sys.argv[1:]))
test_apps = list(filter(lambda arg: not arg.startswith('-'), sys.argv[1:])) or DEFAULT_TEST_APPS
argv = sys.argv[:1] + ['test', '--traceback'] + other_args + test_apps
execute_from_command_line(argv)
if __name__ == '__main__':
runtests()