-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathruntests.py
52 lines (44 loc) · 1.19 KB
/
runtests.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# -*- coding: utf-8 -*-
import os
import sys
def main():
import django
from django.conf import settings
settings.configure(
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': ':memory:'
}
},
INSTALLED_APPS = [
'django_sqlbuilder',
],
MIDDLEWARE_CLASSES = [
],
STATIC_URL = '/static/',
TEST_RUNNER = 'django.test.runner.DiscoverRunner',
TEMPLATE_DIRS = [],
DEBUG = True,
TEMPLATE_DEBUG = True,
ROOT_URLCONF = 'runtests',
)
from django.conf.urls import include, url
global urlpatterns
urlpatterns = []
try:
django.setup()
except AttributeError:
pass
# Run the test suite, including the extra validation tests.
from django.test.utils import get_runner
TestRunner = get_runner(settings)
test_runner = TestRunner(verbosity=1, interactive=False, failfast=False)
failures = test_runner.run_tests([
'django_sqlbuilder',
'sqlbuilder.smartsql',
'sqlbuilder.mini',
])
sys.exit(failures)
if __name__ == "__main__":
main()