wagtail-longclaw/runtests.py

27 wiersze
594 B
Python
Czysty Zwykły widok Historia

2017-02-03 10:04:57 +00:00
#!/usr/bin/env python
# -*- coding: utf-8
from __future__ import unicode_literals, absolute_import
import os
import sys
import django
from django.conf import settings
from django.test.utils import get_runner
def run_tests(*test_args):
if not test_args:
test_args = ['tests']
os.environ['DJANGO_SETTINGS_MODULE'] = 'longclaw.tests.settings'
2017-02-07 09:14:25 +00:00
# django.setup()
# TestRunner = get_runner(settings)
# test_runner = TestRunner()
# failures = test_runner.run_tests(test_args)
# sys.exit(bool(failures))
2017-02-03 10:04:57 +00:00
if __name__ == '__main__':
run_tests(*sys.argv[1:])