forked from mfogel/django-timezone-field
-
Notifications
You must be signed in to change notification settings - Fork 2
/
run_tests.py
33 lines (22 loc) · 840 Bytes
/
run_tests.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
"""
Provides the ability to run test on a standalone Django app.
"""
import sys
from optparse import OptionParser
from settings import configure_settings
# Configure the default settings
configure_settings()
# Django nose must be imported here since it depends on the settings being configured
from django_nose import NoseTestSuiteRunner
def run_tests(*test_args, **kwargs):
if not test_args:
test_args = ['timezone_field']
kwargs.setdefault('interactive', False)
test_runner = NoseTestSuiteRunner(**kwargs)
failures = test_runner.run_tests(test_args)
sys.exit(failures)
if __name__ == '__main__':
parser = OptionParser()
parser.add_option('--verbosity', dest='verbosity', action='store', default=1, type=int)
(options, args) = parser.parse_args()
run_tests(*args, **options.__dict__)