mirror of
https://github.com/carrotquest/django-clickhouse.git
synced 2024-11-10 19:36:38 +03:00
bac333d03a
2) Some fixes
24 lines
641 B
Python
24 lines
641 B
Python
#!/usr/bin/env python
|
|
|
|
"""
|
|
This suite runs tests in django environment. See:
|
|
https://docs.djangoproject.com/en/1.11/topics/testing/advanced/#using-the-django-test-runner-to-test-reusable-applications
|
|
"""
|
|
|
|
import os
|
|
import sys
|
|
|
|
import django
|
|
from django.conf import settings
|
|
from django.test.utils import get_runner
|
|
|
|
if __name__ == "__main__":
|
|
print('Django: ', django.VERSION)
|
|
print('Python: ', sys.version)
|
|
os.environ['DJANGO_SETTINGS_MODULE'] = 'tests.settings'
|
|
django.setup()
|
|
TestRunner = get_runner(settings)
|
|
test_runner = TestRunner()
|
|
failures = test_runner.run_tests(["tests"])
|
|
sys.exit(bool(failures))
|