Files
edx-platform/lms/envs/test_with_mysql.py
2015-11-20 18:18:32 +05:00

16 lines
320 B
Python

"""
Used when testing with MySQL.
"""
from .test import * # pylint: disable=wildcard-import
from .aws import * # pylint: disable=wildcard-import
# Dummy secret key for dev
SECRET_KEY = 'dev key'
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'lms.djangoapps.verify_student',
)