-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathquicktest.py
More file actions
47 lines (40 loc) · 1.25 KB
/
quicktest.py
File metadata and controls
47 lines (40 loc) · 1.25 KB
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
import sys
from twotest.quicktest import QuickDjangoTest
if __name__ == '__main__':
QuickDjangoTest(
pytestargs=sys.argv[1:],
args=(),
apps=("wheelcms_axle",),
installed_apps=(
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
'django.contrib.humanize',
'south',
'haystack',
'wheelcms_axle',
'userena',
'guardian',
'drole',
'granules',
'taggit',
'two.bootstrap',
'twotest',
'wheelcms_axle.tests',
),
TEMPLATE_CONTEXT_PROCESSORS=(
'django.core.context_processors.request',
),
ROOT_URLCONF="wheelcms_axle.quicktest_urls",
ANONYMOUS_USER_ID=-1,
HAYSTACK_CONNECTIONS={'default':{'engine':'haystack.backends.simple_backend.SimpleEngine'}},
AUTH_PROFILE_MODULE="wheelcms_axle.WheelProfile",
CLEANUP_MEDIA=True,
TEST_MEDIA_ROOT="/tmp/wheelcms_axle_test",
USE_TZ=True,
STATIC_URL='/',
STATIC_ROOT='',
CONTENT_LANGUAGES=(('en', 'English'), ('nl', 'Nederlands')),
FALLBACK='en',
LANGUAGE_CODE='en',
)