From b329b0ea42447cfb23a082a0860bfabdb46155af Mon Sep 17 00:00:00 2001 From: Jay Zoldak Date: Sat, 2 Feb 2013 15:53:30 -0500 Subject: [PATCH] Remove toy dbs from CMS test settings.py file as they are not used. --- cms/envs/test.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/cms/envs/test.py b/cms/envs/test.py index 436aa2189e..c22965d748 100644 --- a/cms/envs/test.py +++ b/cms/envs/test.py @@ -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"