-
Notifications
You must be signed in to change notification settings - Fork 3
/
run_tests.py
39 lines (31 loc) · 1.03 KB
/
run_tests.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
# from http://www.travisswicegood.com/2010/01/17/django-virtualenv-pip-and-fabric/
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=(
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.admin',
'django.contrib.sessions',
'multiforloop',
),
# Django replaces this, but it still wants it. *shrugs*
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': '/tmp/django_login.db',
}
},
MEDIA_ROOT = '/tmp/django_login_test_media/',
ROOT_URLCONF = '',
DEBUG = True,
TEMPLATE_DEBUG = True,
)
#call_command('syncdb')
# Fire off the tests
call_command('test', 'multiforloop')
if __name__ == '__main__':
main()