mirror of
https://github.com/carrotquest/django-clickhouse.git
synced 2024-11-10 19:36:38 +03:00
3fba185be2
1. Moved testing from TravisCI to GitHub Actions 2. Added linter and fixed most style errors 3. Added development section to README 4. Added docker testing environment
24 lines
658 B
Python
24 lines
658 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(interactive=False)
|
|
failures = test_runner.run_tests(["tests"])
|
|
sys.exit(bool(failures))
|