-
Notifications
You must be signed in to change notification settings - Fork 20
/
runtests.py
38 lines (31 loc) · 939 Bytes
/
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
import os
import sys
import django
import django.conf
DEFAULT_SETTINGS = dict(
INSTALLED_APPS=(
'django_permanent',
),
DATABASES={
'default': {
'ENGINE': 'django.db.backends.sqlite3'
}
},
MIDDLEWARE_CLASSES=[]
)
if django.VERSION < (1, 7, 0):
DEFAULT_SETTINGS['INSTALLED_APPS'] += ('django_permanent.tests.test_app', )
def runtests(*test_args):
if not django.conf.settings.configured:
django.conf.settings.configure(**DEFAULT_SETTINGS)
if hasattr(django, 'setup'):
django.setup()
if not test_args:
test_args = ['django_permanent.tests']
parent = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, parent)
from django.test.runner import DiscoverRunner
failures = DiscoverRunner(verbosity=1, interactive=True, failfast=True).run_tests(test_args)
sys.exit(failures)
if __name__ == '__main__':
runtests()