kopia lustrzana https://gitlab.com/marnanel/chapeau
16 wiersze
384 B
Python
Executable File
16 wiersze
384 B
Python
Executable File
#!/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'] = 'test_settings'
|
|
django.setup()
|
|
TestRunner = get_runner(settings)
|
|
test_runner = TestRunner()
|
|
failures = test_runner.run_tests(["tests"])
|
|
sys.exit(bool(failures))
|