-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconftest.py
34 lines (30 loc) · 937 Bytes
/
conftest.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
from pathlib import Path
from django.conf import settings
def pytest_configure():
base_dir = Path(".")
settings.configure(
BASE_DIR=base_dir,
SECRET_KEY="this-is-a-secret",
TEMPLATES=[
{
"BACKEND": "django.template.backends.django.DjangoTemplates",
"APP_DIRS": True,
"OPTIONS": {
"context_processors": [
"django.template.context_processors.request",
"django.template.context_processors.debug",
"django.template.context_processors.static",
],
},
}
],
INSTALLED_APPS=[
"django.contrib.sitemaps",
"tests",
],
CACHES={
"default": {
"BACKEND": "django.core.cache.backends.dummy.DummyCache",
}
},
)