Merge pull request #4317 from edx/zoldak/increase-sqlite-timeout
Increase the test SQLite DB timeout. TE-397
This commit is contained in:
@@ -67,7 +67,10 @@ DATABASES = {
|
||||
'default': {
|
||||
'ENGINE': 'django.db.backends.sqlite3',
|
||||
'NAME': TEST_ROOT / "db" / "test_edx.db",
|
||||
'TEST_NAME': TEST_ROOT / "db" / "test_edx.db"
|
||||
'TEST_NAME': TEST_ROOT / "db" / "test_edx.db",
|
||||
'OPTIONS': {
|
||||
'timeout': 30,
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -58,6 +58,9 @@ DATABASES = {
|
||||
'ENGINE': 'django.db.backends.sqlite3',
|
||||
'NAME': TEST_ROOT / "db" / "test_edx.db",
|
||||
'TEST_NAME': TEST_ROOT / "db" / "test_edx.db",
|
||||
'OPTIONS': {
|
||||
'timeout': 30,
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user