django-model-utils/runtests.py

50 lines
1.1 KiB
Python
Raw Normal View History

2011-04-16 19:49:33 +00:00
#!/usr/bin/env python
import os, sys
from django.conf import settings
import django
2011-04-16 19:49:33 +00:00
DEFAULT_SETTINGS = dict(
INSTALLED_APPS=(
'model_utils',
'model_utils.tests',
),
DATABASES={
"default": {
"ENGINE": "django.db.backends.sqlite3"
}
},
SILENCED_SYSTEM_CHECKS=["1_7.W001"],
)
2011-04-16 19:49:33 +00:00
2014-04-11 03:49:42 +00:00
def runtests():
if not settings.configured:
settings.configure(**DEFAULT_SETTINGS)
# Compatibility with Django 1.7's stricter initialization
if hasattr(django, 'setup'):
django.setup()
2011-04-16 19:49:33 +00:00
parent = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, parent)
2014-04-11 03:49:42 +00:00
try:
from django.test.runner import DiscoverRunner
runner_class = DiscoverRunner
test_args = ['model_utils.tests']
except ImportError:
from django.test.simple import DjangoTestSuiteRunner
runner_class = DjangoTestSuiteRunner
test_args = ['tests']
failures = runner_class(
2012-02-02 15:31:52 +00:00
verbosity=1, interactive=True, failfast=False).run_tests(test_args)
2011-04-16 19:49:33 +00:00
sys.exit(failures)
if __name__ == '__main__':
runtests()