-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathruntests.py
executable file
·50 lines (41 loc) · 1.14 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
#!/usr/bin/env python3
import sys
import warnings
from optparse import OptionParser
import django
from django.conf import settings
from django.core.management import call_command
def runtests(test_path='email_signals'):
if not settings.configured:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': ':memory:'
}
}
# Configure test environment
settings.configure(
DATABASES=DATABASES,
INSTALLED_APPS=(
'django.contrib.contenttypes',
'django.contrib.auth',
'email_signals',
),
ROOT_URLCONF=None,
LANGUAGES=(('en', 'English'),),
MIDDLEWARE_CLASSES=(),
)
django.setup()
warnings.simplefilter('always', DeprecationWarning)
failures = call_command(
'test',
test_path,
interactive=False,
failfast=False,
verbosity=1
)
sys.exit(bool(failures))
if __name__ == '__main__':
parser = OptionParser()
(options, args) = parser.parse_args()
runtests(*args)