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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
"""
Django settings for testing treebeard
"""
import os
import django
def get_db_conf():
"""
Configures database according to the DATABASE_ENGINE environment
variable. Defaults to SQlite.
This method is used to let Travis run against different database backends.
"""
database_engine = os.environ.get('DATABASE_ENGINE', 'sqlite')
if database_engine == 'sqlite':
return {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': ':memory:'
}
elif database_engine == 'psql':
return {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'travis_ci_test',
'USER': 'postgres',
'PASSWORD': '',
'HOST': '127.0.0.1',
'PORT': '',
}
elif database_engine == "mysql":
return {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'travis_ci_test',
'USER': 'travis',
'PASSWORD': '',
'HOST': '127.0.0.1',
'PORT': '',
}
elif database_engine == "mssql":
return {
'ENGINE': 'sql_server.pyodbc',
'NAME': 'master',
'USER': 'sa',
'PASSWORD': 'Password12!',
'HOST': '(local)\SQL2016',
'PORT': '',
'OPTIONS': {
'driver': 'SQL Server Native Client 11.0',
'MARS_Connection': 'True',
},
}
DATABASES = {'default': get_db_conf()}
SECRET_KEY = '7r33b34rd'
INSTALLED_APPS = [
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.admin',
'django.contrib.messages',
'treebeard',
'treebeard.tests'
]
# This little hacks forces Django into the old syncdb behaviour,
# creating models without migrations.
if django.VERSION >= (1, 9):
MIGRATION_MODULES = {app.split('.')[-1]: None for app in INSTALLED_APPS}
else:
class DisableMigrations(object):
def __contains__(self, item):
return True
def __getitem__(self, item):
return "notmigrations"
MIGRATION_MODULES = DisableMigrations()
MIDDLEWARE_CLASSES = [
'django.contrib.sessions.middleware.SessionMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware'
]
ROOT_URLCONF = 'treebeard.tests.urls'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.contrib.auth.context_processors.auth',
'django.template.context_processors.debug',
'django.template.context_processors.i18n',
'django.template.context_processors.media',
'django.template.context_processors.static',
'django.template.context_processors.tz',
'django.template.context_processors.request',
'django.contrib.messages.context_processors.messages',
],
},
},
]
|