Unit Test and named urls

This commit is contained in:
Silvio Leite
2018-08-13 22:34:56 -03:00
parent 447bf17e63
commit 376f6e487a
7 changed files with 158 additions and 2 deletions

14
runtests.py Normal file
View File

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