django-allauth-cas/runtests.py

16 lines
401 B
Python
Raw Normal View History

2017-07-25 18:31:42 +02:00
#!/usr/bin/env python
2017-07-22 18:29:14 +02:00
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.settings"
2017-07-22 18:29:14 +02:00
django.setup()
TestRunner = get_runner(settings)
test_runner = TestRunner()
failures = test_runner.run_tests(sys.argv[1:] or ["tests"])
2017-07-22 18:29:14 +02:00
sys.exit(bool(failures))