-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquicktest.py
More file actions
38 lines (33 loc) · 1.09 KB
/
quicktest.py
File metadata and controls
38 lines (33 loc) · 1.09 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
from twotest.quicktest import QuickDjangoTest
if __name__ == '__main__':
QuickDjangoTest(
apps=("wheelcms_comments",),
installed_apps=(
## these are mostly wheelcms_axle's dependencies
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
'django.contrib.humanize',
'south',
'haystack',
'wheelcms_axle',
'wheelcms_comments',
'taggit',
'two.ol',
'two.bootstrap',
'twotest',
'wheelcms_axle.tests',
),
ROOT_URLCONF="wheelcms_axle.quicktest_urls",
ANONYMOUS_USER_ID=-1,
HAYSTACK_SITECONF = 'wheelcms_axle.search_sites',
HAYSTACK_SEARCH_ENGINE = 'simple',
AUTH_PROFILE_MODULE="wheelcms_axle.WheelProfile",
CLEANUP_MEDIA=True,
TEST_MEDIA_ROOT="/tmp/wheelcms_axle_test",
USE_TZ=True,
STATIC_URL='/',
TESTING=True,
CONTENT_LANGUAGES=(('en', 'English'), ('nl', 'Nederlands')),
FALLBACK='en',
)