-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_settings.py
More file actions
88 lines (73 loc) · 2.18 KB
/
test_settings.py
File metadata and controls
88 lines (73 loc) · 2.18 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
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
"""
These settings are here to use during tests, because django requires them.
In a real-world use case, apps in this project are installed into other
Django applications, so these settings will not be used.
"""
from pathlib import Path
def root(path: Path) -> Path:
"""Get the absolute path of the given path relative to the project root."""
return Path(__file__).parent.resolve() / path
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'default.db',
'USER': '',
'PASSWORD': '',
'HOST': '',
'PORT': '',
},
}
INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.messages',
'django.contrib.sessions',
'completion',
'completion_aggregator',
'django_celery_beat',
'learning_paths',
'learning_credentials',
'django_object_actions',
'event_routing_backends',
)
MIGRATION_MODULES = {
# the module 'third_party_app' is the one you want to skip
'completion_aggregator': None,
}
LOCALE_PATHS = [
root(Path('learning_credentials/conf/locale')),
]
ROOT_URLCONF = 'learning_credentials.urls'
SECRET_KEY = 'insecure-secret-key' # noqa: S105
MIDDLEWARE = (
'django.contrib.sessions.middleware.SessionMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
)
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'APP_DIRS': False,
'OPTIONS': {
'context_processors': [
'django.contrib.auth.context_processors.auth', # this is required for admin
'django.contrib.messages.context_processors.messages', # this is required for admin
'django.template.context_processors.request', # this is required for admin
],
},
},
]
TESTING = True
USE_TZ = True
DEFAULT_AUTO_FIELD = 'django.db.models.AutoField'
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'loggers': {
'event_routing_backends': {
'level': 'CRITICAL',
'propagate': True,
},
},
}