forked from paulocheque/django-dynamic-fixture
-
Notifications
You must be signed in to change notification settings - Fork 1
/
runtests.py
36 lines (25 loc) · 1005 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
#!/usr/bin/env python
import logging
import os
import sys
from os.path import dirname, abspath
from optparse import OptionParser
logging.getLogger('ddf').addHandler(logging.StreamHandler())
sys.path.insert(0, dirname(abspath(__file__)))
from django.conf import settings
if not settings.configured:
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
from django_nose import NoseTestSuiteRunner
# Django-Nose must import test_models to avoid 'no such table' problem
from django_dynamic_fixture import test_models
def runtests(*test_args, **kwargs):
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)
parser.add_options(NoseTestSuiteRunner.options)
(options, args) = parser.parse_args()
runtests(*args, **options.__dict__)