-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquicktest.py
More file actions
41 lines (35 loc) · 1.12 KB
/
quicktest.py
File metadata and controls
41 lines (35 loc) · 1.12 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
from twotest.quicktest import QuickDjangoTest
if __name__ == '__main__':
QuickDjangoTest(
apps=("wheelcms_users",),
installed_apps=(
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
'django.contrib.humanize',
'userena',
'guardian',
'south',
'haystack',
'wheelcms_axle',
'wheelcms_users',
'drole',
'granules',
'taggit',
'two.bootstrap',
'twotest',
'wheelcms_axle.tests',
),
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',
)