mirror of
https://github.com/jazzband/django-eav2.git
synced 2026-04-30 19:54:52 +00:00
29 lines
750 B
Text
29 lines
750 B
Text
|
|
#!/usr/bin/env python
|
||
|
|
import os
|
||
|
|
import sys
|
||
|
|
|
||
|
|
import django
|
||
|
|
from django.conf import settings
|
||
|
|
from django.test.utils import get_runner
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
os.environ['DJANGO_SETTINGS_MODULE'] = 'tests.test_settings'
|
||
|
|
django.setup()
|
||
|
|
TestRunner = get_runner(settings)
|
||
|
|
test_runner = TestRunner()
|
||
|
|
|
||
|
|
if len(sys.argv) == 1 or sys.argv[1] in ['-a', '--all']:
|
||
|
|
tests = [
|
||
|
|
'tests.queries',
|
||
|
|
'tests.registry',
|
||
|
|
'tests.data_validation',
|
||
|
|
'tests.limiting_attributes',
|
||
|
|
'tests.misc_models',
|
||
|
|
'tests.set_and_get'
|
||
|
|
]
|
||
|
|
else:
|
||
|
|
tests = ['tests.{}'.format(arg) for arg in sys.argv[1:]]
|
||
|
|
|
||
|
|
result = test_runner.run_tests(tests)
|
||
|
|
sys.exit(bool(result))
|