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
|
"""Tests settings"""
import os
SECRET_KEY = 'secret-key'
DATABASES = {
'default': {
'NAME': 'tagging.db',
'ENGINE': 'django.db.backends.sqlite3'
}
}
DATABASE_ENGINE = os.environ.get('DATABASE_ENGINE')
if DATABASE_ENGINE == 'postgres':
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'tagging',
'USER': 'postgres',
'HOST': 'localhost'
}
}
elif DATABASE_ENGINE == 'mysql':
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'zinnia',
'USER': 'root',
'HOST': 'localhost'
}
}
INSTALLED_APPS = [
'django.contrib.auth',
'django.contrib.sessions',
'django.contrib.contenttypes',
'tagging',
'tagging.tests',
]
|