9 lines
336 B
Python
9 lines
336 B
Python
"""Test suite environment variables unique to the instructor plugin."""
|
|
|
|
|
|
def plugin_settings(settings):
|
|
"""Settings for the instructor plugin."""
|
|
# Enable this feature for course staff grade downloads, to enable acceptance tests
|
|
settings.ENABLE_GRADE_DOWNLOADS = True
|
|
settings.ALLOW_COURSE_STAFF_GRADE_DOWNLOADS = True
|