forked from revsys/django-friendship
-
Notifications
You must be signed in to change notification settings - Fork 0
/
runtests.py
executable file
·62 lines (52 loc) · 1.77 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/usr/bin/env python
import sys
from django.conf import global_settings, settings
OUR_MIDDLEWARE = []
OUR_MIDDLEWARE.extend(global_settings.MIDDLEWARE)
OUR_MIDDLEWARE.extend(
[
"django.contrib.sessions.middleware.SessionMiddleware",
"django.contrib.auth.middleware.AuthenticationMiddleware",
]
)
settings.configure(
DATABASES={"default": {"ENGINE": "django.db.backends.sqlite3", "NAME": ":memory;"}},
SECRET_KEY="secret",
INSTALLED_APPS=[
"django.contrib.auth",
"django.contrib.sessions",
"django.contrib.contenttypes",
"friendship",
"friendship.tests",
],
ROOT_URLCONF="friendship.urls",
MIDDLEWARE=OUR_MIDDLEWARE,
TEMPLATES=[
{
"BACKEND": "django.template.backends.django.DjangoTemplates",
"DIRS": [],
"APP_DIRS": True,
"OPTIONS": {
"context_processors": [
"django.contrib.auth.context_processors.auth",
"django.template.context_processors.debug",
"django.template.context_processors.i18n",
"django.template.context_processors.media",
"django.template.context_processors.static",
"django.template.context_processors.tz",
"django.contrib.messages.context_processors.messages",
],
},
},
],
)
def runtests(*test_args):
import django.test.utils
if django.VERSION[0:2] >= (1, 7):
django.setup()
runner_class = django.test.utils.get_runner(settings)
test_runner = runner_class(verbosity=1, interactive=True, failfast=False)
failures = test_runner.run_tests(["friendship"])
sys.exit(failures)
if __name__ == "__main__":
runtests()