-
Notifications
You must be signed in to change notification settings - Fork 90
/
runtests.py
executable file
·53 lines (47 loc) · 1.45 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
#!/usr/bin/env python
import django
from django.conf import settings
from django.core.management import call_command
INSTALLED_APPS = (
# Required contrib apps.
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sites',
'django.contrib.sessions',
# Our app and it's test app.
'dbsettings',
)
SETTINGS = {
'INSTALLED_APPS': INSTALLED_APPS,
'SITE_ID': 1,
'ROOT_URLCONF': 'dbsettings.tests.test_urls',
'DATABASES': {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': ':memory:',
}
},
'MIDDLEWARE_CLASSES': (
'django.contrib.sessions.middleware.SessionMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
),
'MIGRATION_MODULES': {
# This allow test models to be created even if they are not in migration.
# Still no better solution available: https://code.djangoproject.com/ticket/7835
# This hack is used in Django testrunner itself.
'dbsettings': 'dbsettings.skip_migrations_for_test',
},
'TEMPLATES': [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'APP_DIRS': True,
},
],
}
if not settings.configured:
settings.configure(**SETTINGS)
if django.VERSION >= (1, 7):
django.setup()
call_command('test', 'dbsettings')