forked from divio/aldryn-boilerplates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_settings.py
23 lines (23 loc) · 860 Bytes
/
test_settings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- coding: utf-8 -*-
HELPER_SETTINGS = {
'INSTALLED_APPS': [
'aldryn_boilerplates',
'aldryn_boilerplates.test_helpers.testapp',
'aldryn_boilerplates.test_helpers.testapp_no_default',
],
'CONTEXT_PROCESSORS': [
'aldryn_boilerplates.context_processors.boilerplate',
],
'TEMPLATE_LOADERS': [
'django.template.loaders.filesystem.Loader',
'aldryn_boilerplates.template_loaders.AppDirectoriesLoader',
'django.template.loaders.app_directories.Loader',
],
'STATICFILES_FINDERS': [
'django.contrib.staticfiles.finders.FileSystemFinder',
'aldryn_boilerplates.staticfile_finders.AppDirectoriesFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
],
'ALDRYN_BOILERPLATE_NAME': 'test-boilerplate',
# 'ALDRYN_BOILERPLATE_NAME': None,
}