-
Notifications
You must be signed in to change notification settings - Fork 8
/
runtests.py
53 lines (43 loc) · 1.2 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
53
""" run tests for django-smoketest
$ virtualenv ve
$ ./ve/bin/pip install Django==1.8
$ ./ve/bin/pip install -r test_reqs.txt
$ ./ve/bin/python runtests.py
"""
import django
from django.conf import settings
from django.core.management import call_command
def main():
# Dynamically configure the Django settings with the minimum necessary to
# get Django running tests
settings.configure(
INSTALLED_APPS=(
'main',
'exceptionstest',
'smoketest',
),
TEST_RUNNER='django.test.runner.DiscoverRunner',
COVERAGE_EXCLUDES_FOLDERS=['migrations'],
ROOT_URLCONF='testapp.urls',
SECRET_KEY='dummy',
PROJECT_APPS=[
'smoketest',
],
# Django replaces this, but it still wants it. *shrugs*
DATABASES={
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': ':memory:',
'HOST': '',
'PORT': '',
'USER': '',
'PASSWORD': '',
}
},
)
django.setup()
call_command('check')
# Fire off the tests
call_command('test')
if __name__ == '__main__':
main()