thingy_objects
Marnanel Thurman 2018-08-07 16:28:52 +01:00
rodzic 8011d9a833
commit c30292c443
1 zmienionych plików z 15 dodań i 0 usunięć

15
runtests.py 100755
Wyświetl plik

@ -0,0 +1,15 @@
#!/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'] = 'tests.test_settings'
django.setup()
TestRunner = get_runner(settings)
test_runner = TestRunner()
failures = test_runner.run_tests(["tests"])
sys.exit(bool(failures))