Merge pull request #16269 from edx/jmbowman/PLAT-1555
PLAT-1555 Stop using deprecated TEST_* DB setting keys
This commit is contained in:
@@ -75,19 +75,23 @@ DATABASES = {
|
||||
'default': {
|
||||
'ENGINE': 'django.db.backends.sqlite3',
|
||||
'NAME': TEST_ROOT / "db" / "test_edx.db",
|
||||
'TEST_NAME': TEST_ROOT / "db" / "test_edx.db",
|
||||
'OPTIONS': {
|
||||
'timeout': 30,
|
||||
},
|
||||
'ATOMIC_REQUESTS': True,
|
||||
'TEST': {
|
||||
'NAME': TEST_ROOT / "db" / "test_edx.db",
|
||||
},
|
||||
},
|
||||
'student_module_history': {
|
||||
'ENGINE': 'django.db.backends.sqlite3',
|
||||
'NAME': TEST_ROOT / "db" / "test_student_module_history.db",
|
||||
'TEST_NAME': TEST_ROOT / "db" / "test_student_module_history.db",
|
||||
'OPTIONS': {
|
||||
'timeout': 30,
|
||||
},
|
||||
'TEST': {
|
||||
'NAME': TEST_ROOT / "db" / "test_student_module_history.db",
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -67,19 +67,23 @@ DATABASES = {
|
||||
'default': {
|
||||
'ENGINE': 'django.db.backends.sqlite3',
|
||||
'NAME': TEST_ROOT / "db" / "test_edx.db",
|
||||
'TEST_NAME': TEST_ROOT / "db" / "test_edx.db",
|
||||
'OPTIONS': {
|
||||
'timeout': 30,
|
||||
},
|
||||
'ATOMIC_REQUESTS': True,
|
||||
'TEST': {
|
||||
'NAME': TEST_ROOT / "db" / "test_edx.db",
|
||||
},
|
||||
},
|
||||
'student_module_history': {
|
||||
'ENGINE': 'django.db.backends.sqlite3',
|
||||
'NAME': TEST_ROOT / "db" / "test_student_module_history.db",
|
||||
'TEST_NAME': TEST_ROOT / "db" / "test_student_module_history.db",
|
||||
'OPTIONS': {
|
||||
'timeout': 30,
|
||||
},
|
||||
'TEST': {
|
||||
'NAME': TEST_ROOT / "db" / "test_student_module_history.db",
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user