Commit 2d59d44b by David Baumgold

Clarify DATA_DIR path

parent c82e4ede
...@@ -24,10 +24,10 @@ from xmodule.error_module import ErrorDescriptor ...@@ -24,10 +24,10 @@ from xmodule.error_module import ErrorDescriptor
from xmodule.modulestore.xml import LocationReader from xmodule.modulestore.xml import LocationReader
MODULE_DIR = path(__file__).dirname()
# Location of common test DATA directory # Location of common test DATA directory
# '../../../../edx-platform/common/test/data/' # '../../../../edx-platform/common/test/data/'
MODULE_DIR = path(__file__).dirname() DATA_DIR = MODULE_DIR.parent.parent.parent.parent / "test" / "data"
DATA_DIR = path.joinpath(*MODULE_DIR.splitall()[:-4]) / 'test/data/'
open_ended_grading_interface = { open_ended_grading_interface = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment