This is a clone (copy) of CSMH's declaration and methods with an added id of UnsignedBigInAutoField We should be able to delete the save_history code, but needs testing. Add error logging when capa failures happen Put StudentModuleHistory into its own database Bump out the primary key on CSMHE This gives us a gap to backfill as needed. Since the new table's pk is an unsigned bigint, even for people who don't consolidate CSMH into CSMHE, the lost rows are unlikely to matter. Remove StudentModuleHistory cleaner
60 lines
2.1 KiB
Python
60 lines
2.1 KiB
Python
"""
|
|
Settings used when generating static assets for use in tests.
|
|
|
|
For example, Bok Choy uses two different settings files:
|
|
1. test_static_optimized is used when invoking collectstatic
|
|
2. bok_choy is used when running CMS and LMS
|
|
|
|
Note: it isn't possible to have a single settings file, because Django doesn't
|
|
support both generating static assets to a directory and also serving static
|
|
from the same directory.
|
|
"""
|
|
|
|
# Start with the common settings
|
|
from .common import * # pylint: disable=wildcard-import, unused-wildcard-import
|
|
|
|
# Use an in-memory database since this settings file is only used for updating assets
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
'ATOMIC_REQUESTS': True,
|
|
},
|
|
'student_module_history': {
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
},
|
|
}
|
|
|
|
# Provide a dummy XQUEUE_INTERFACE setting as LMS expects it to exist on start up
|
|
XQUEUE_INTERFACE = {
|
|
"url": "https://sandbox-xqueue.edx.org",
|
|
"django_auth": {
|
|
"username": "lms",
|
|
"password": "***REMOVED***"
|
|
},
|
|
"basic_auth": ('anant', 'agarwal'),
|
|
}
|
|
|
|
|
|
######################### PIPELINE ####################################
|
|
|
|
# Use RequireJS optimized storage
|
|
STATICFILES_STORAGE = 'openedx.core.lib.django_require.staticstorage.OptimizedCachedRequireJsStorage'
|
|
|
|
# Revert to the default set of finders as we don't want to dynamically pick up files from the pipeline
|
|
STATICFILES_FINDERS = [
|
|
'django.contrib.staticfiles.finders.FileSystemFinder',
|
|
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
|
|
]
|
|
|
|
# Redirect to the test_root folder within the repo
|
|
TEST_ROOT = REPO_ROOT / "test_root"
|
|
LOG_DIR = (TEST_ROOT / "log").abspath()
|
|
|
|
# Store the static files under test root so that they don't overwrite existing static assets
|
|
STATIC_ROOT = (TEST_ROOT / "staticfiles" / "lms").abspath()
|
|
|
|
# Disable uglify when tests are running (used by build.js).
|
|
# 1. Uglify is by far the slowest part of the build process
|
|
# 2. Having full source code makes debugging tests easier for developers
|
|
os.environ['REQUIRE_BUILD_PROFILE_OPTIMIZE'] = 'none'
|