Files
edx-platform/lms/envs/test_with_mysql.py
2017-10-26 13:57:52 -04:00

16 lines
345 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.apps.VerifyStudentConfig',
]