Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
bda84d52
Commit
bda84d52
authored
Oct 18, 2017
by
Jeremy Bowman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PLAT-1555 Stop using deprecated TEST_* DB setting keys
parent
13f3b496
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
4 deletions
+12
-4
cms/envs/acceptance.py
+6
-2
lms/envs/acceptance.py
+6
-2
No files found.
cms/envs/acceptance.py
View file @
bda84d52
...
@@ -75,19 +75,23 @@ DATABASES = {
...
@@ -75,19 +75,23 @@ DATABASES = {
'default'
:
{
'default'
:
{
'ENGINE'
:
'django.db.backends.sqlite3'
,
'ENGINE'
:
'django.db.backends.sqlite3'
,
'NAME'
:
TEST_ROOT
/
"db"
/
"test_edx.db"
,
'NAME'
:
TEST_ROOT
/
"db"
/
"test_edx.db"
,
'TEST_NAME'
:
TEST_ROOT
/
"db"
/
"test_edx.db"
,
'OPTIONS'
:
{
'OPTIONS'
:
{
'timeout'
:
30
,
'timeout'
:
30
,
},
},
'ATOMIC_REQUESTS'
:
True
,
'ATOMIC_REQUESTS'
:
True
,
'TEST'
:
{
'NAME'
:
TEST_ROOT
/
"db"
/
"test_edx.db"
,
},
},
},
'student_module_history'
:
{
'student_module_history'
:
{
'ENGINE'
:
'django.db.backends.sqlite3'
,
'ENGINE'
:
'django.db.backends.sqlite3'
,
'NAME'
:
TEST_ROOT
/
"db"
/
"test_student_module_history.db"
,
'NAME'
:
TEST_ROOT
/
"db"
/
"test_student_module_history.db"
,
'TEST_NAME'
:
TEST_ROOT
/
"db"
/
"test_student_module_history.db"
,
'OPTIONS'
:
{
'OPTIONS'
:
{
'timeout'
:
30
,
'timeout'
:
30
,
},
},
'TEST'
:
{
'NAME'
:
TEST_ROOT
/
"db"
/
"test_student_module_history.db"
,
},
}
}
}
}
...
...
lms/envs/acceptance.py
View file @
bda84d52
...
@@ -67,19 +67,23 @@ DATABASES = {
...
@@ -67,19 +67,23 @@ DATABASES = {
'default'
:
{
'default'
:
{
'ENGINE'
:
'django.db.backends.sqlite3'
,
'ENGINE'
:
'django.db.backends.sqlite3'
,
'NAME'
:
TEST_ROOT
/
"db"
/
"test_edx.db"
,
'NAME'
:
TEST_ROOT
/
"db"
/
"test_edx.db"
,
'TEST_NAME'
:
TEST_ROOT
/
"db"
/
"test_edx.db"
,
'OPTIONS'
:
{
'OPTIONS'
:
{
'timeout'
:
30
,
'timeout'
:
30
,
},
},
'ATOMIC_REQUESTS'
:
True
,
'ATOMIC_REQUESTS'
:
True
,
'TEST'
:
{
'NAME'
:
TEST_ROOT
/
"db"
/
"test_edx.db"
,
},
},
},
'student_module_history'
:
{
'student_module_history'
:
{
'ENGINE'
:
'django.db.backends.sqlite3'
,
'ENGINE'
:
'django.db.backends.sqlite3'
,
'NAME'
:
TEST_ROOT
/
"db"
/
"test_student_module_history.db"
,
'NAME'
:
TEST_ROOT
/
"db"
/
"test_student_module_history.db"
,
'TEST_NAME'
:
TEST_ROOT
/
"db"
/
"test_student_module_history.db"
,
'OPTIONS'
:
{
'OPTIONS'
:
{
'timeout'
:
30
,
'timeout'
:
30
,
},
},
'TEST'
:
{
'NAME'
:
TEST_ROOT
/
"db"
/
"test_student_module_history.db"
,
},
}
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment