django-notifications/notifications/test_settings.py
theodore.therone@gmail.com 9608ee8a6e Added tests, confirmed works for python2/3
Also added .travis.yml
2015-03-28 08:25:56 +00:00

22 lines
No EOL
351 B
Python

SECRET_KEY = 'secret_key'
SOUTH_TESTS_MIGRATE = True
TESTING = True
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': ':memory:',
}
}
MIDDLEWARE_CLASSES = ()
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'notifications',
)
ROOT_URLCONF = 'notifications.urls'