Skip to content
Snippets Groups Projects
Commit 510435ad authored by David Ormsbee's avatar David Ormsbee
Browse files

Sketchy adding of test dbs to the cms test.py config file -- these are...

Sketchy adding of test dbs to the cms test.py config file -- these are required for the Student (shared django app) tests to run
parent 7711f813
No related branches found
No related tags found
No related merge requests found
......@@ -55,6 +55,17 @@ DATABASES = {
'default': {
'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",
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment