Remove toy dbs from CMS test settings.py file as they are not used.

This commit is contained in:
Jay Zoldak
2013-02-02 15:53:30 -05:00
committed by Jay Zoldak
parent b63c3c5a67
commit b329b0ea42

View File

@@ -75,17 +75,6 @@ DATABASES = {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': ENV_ROOT / "db" / "cms.db",
},
# The following are for testing purposes...
'edX/toy/2012_Fall': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': ENV_ROOT / "db" / "course1.db",
},
'edx/full/6.002_Spring_2012': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': ENV_ROOT / "db" / "course2.db",
}
}
LMS_BASE = "localhost:8000"