-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathruntests.py
47 lines (38 loc) · 1.03 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 os
import sys
from django.conf import settings
if not settings.configured:
settings.configure(
STATIC_URL = '/static/',
DATABASES={
'default': {
'ENGINE': 'django.db.backends.sqlite3',
}
},
INSTALLED_APPS=[
'django.contrib.auth',
'django.contrib.admin',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django_handlebars',
],
)
try:
from django import setup
except ImportError:
pass
else:
setup()
try:
from django.test.runner import DiscoverRunner as Runner
except ImportError:
from django.test.simple import DjangoTestSuiteRunner as Runner
def runtests(*args, **kwargs):
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
test_runner = Runner(**kwargs)
failures = test_runner.run_tests(["django_handlebars"])
sys.exit(failures)
if __name__ == '__main__':
runtests()