-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
settings.py
85 lines (73 loc) · 2.36 KB
/
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
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
import dj_database_url
SECRET_KEY = "django-pghistory"
# Install the tests as an app so that we can make test models
INSTALLED_APPS = [
"pghistory",
"pghistory.admin",
"django.contrib.admin",
"django.contrib.auth",
"django.contrib.contenttypes",
"django.contrib.sessions",
"django.contrib.messages",
"django.contrib.staticfiles",
"pgtrigger",
"django_extensions",
"pghistory.tests",
]
# Database url comes from the DATABASE_URL env var
DATABASES = {"default": dj_database_url.config()}
DATABASES["default"]["OPTIONS"] = {"options": "-c jit=off"}
# Force postgres timezones to be UTC for tests
USE_TZ = True
TIMEZONE = "UTC"
# For testing middleware
ROOT_URLCONF = "pghistory.tests.urls"
MIDDLEWARE = [
"django.middleware.security.SecurityMiddleware",
"django.contrib.sessions.middleware.SessionMiddleware",
"django.middleware.common.CommonMiddleware",
"django.middleware.csrf.CsrfViewMiddleware",
"django.contrib.auth.middleware.AuthenticationMiddleware",
"django.contrib.messages.middleware.MessageMiddleware",
"django.middleware.clickjacking.XFrameOptionsMiddleware",
"pghistory.middleware.HistoryMiddleware",
]
DEFAULT_AUTO_FIELD = "django.db.models.AutoField"
# Options for testing the admin locally and in tests
ALLOWED_HOSTS = []
DEBUG = True
ROOT_URLCONF = "pghistory.tests.urls"
TEMPLATES = [
{
"BACKEND": "django.template.backends.django.DjangoTemplates",
"DIRS": [],
"APP_DIRS": True,
"OPTIONS": {
"context_processors": [
"django.template.context_processors.debug",
"django.template.context_processors.request",
"django.contrib.auth.context_processors.auth",
"django.contrib.messages.context_processors.messages",
],
},
},
]
WSGI_APPLICATION = "pghistory.tests.wsgi.application"
AUTH_PASSWORD_VALIDATORS = [
{
"NAME": "django.contrib.auth.password_validation.UserAttributeSimilarityValidator",
},
{
"NAME": "django.contrib.auth.password_validation.MinimumLengthValidator",
},
{
"NAME": "django.contrib.auth.password_validation.CommonPasswordValidator",
},
{
"NAME": "django.contrib.auth.password_validation.NumericPasswordValidator",
},
]
LANGUAGE_CODE = "en-us"
TIME_ZONE = "UTC"
USE_I18N = True
STATIC_URL = "/static/"