-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathruntests.py
executable file
·47 lines (39 loc) · 1.18 KB
/
runtests.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
#!/usr/bin/env python
import sys
from django.conf import settings
from django.core.management import execute_from_command_line
def runtests():
try:
module = sys.argv[1]
except IndexError:
module = "rijkshuisstijl"
argv = sys.argv[:1] + ["test", module]
execute_from_command_line(argv)
if not settings.configured:
settings.configure(
DATABASES={"default": {"ENGINE": "django.db.backends.sqlite3",}},
INSTALLED_APPS=(
"django.contrib.auth",
"django.contrib.contenttypes",
"rijkshuisstijl",
"rijkshuisstijl.tests",
"sitetree",
),
MIDDLEWARE_CLASSES=[],
ROOT_URLCONF="rijkshuisstijl.tests.urls",
STATIC_URL="/static/",
USE_TZ=True,
TEMPLATES=[
{
"BACKEND": "django.template.backends.django.DjangoTemplates",
"DIRS": [],
"APP_DIRS": True,
"OPTIONS": {
"debug": True,
"context_processors": ["django.template.context_processors.request",],
},
},
],
)
if __name__ == "__main__":
runtests()