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
eda5f45d
Commit
eda5f45d
authored
Apr 07, 2017
by
sanfordstudent
Committed by
GitHub
Apr 07, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #14842 from edx/sstudent/rescore_fix
for TNL-6825, fix rescore logic
parents
6431d0f6
0f53585a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
lms/djangoapps/instructor_task/tasks_helper.py
+1
-2
lms/djangoapps/instructor_task/tests/test_tasks.py
+7
-2
No files found.
lms/djangoapps/instructor_task/tasks_helper.py
View file @
eda5f45d
...
@@ -541,8 +541,7 @@ def rescore_problem_module_state(xmodule_instance_args, module_descriptor, stude
...
@@ -541,8 +541,7 @@ def rescore_problem_module_state(xmodule_instance_args, module_descriptor, stude
if
hasattr
(
instance
,
"done"
):
if
hasattr
(
instance
,
"done"
):
if
not
instance
.
done
:
if
not
instance
.
done
:
return
UPDATE_STATUS_SKIPPED
return
UPDATE_STATUS_SKIPPED
else
:
elif
not
instance
.
has_submitted_answer
():
if
instance
.
has_submitted_answer
():
return
UPDATE_STATUS_SKIPPED
return
UPDATE_STATUS_SKIPPED
# Set the tracking info before this call, because it makes downstream
# Set the tracking info before this call, because it makes downstream
...
...
lms/djangoapps/instructor_task/tests/test_tasks.py
View file @
eda5f45d
...
@@ -322,9 +322,14 @@ class TestRescoreInstructorTask(TestInstructorTasks):
...
@@ -322,9 +322,14 @@ class TestRescoreInstructorTask(TestInstructorTasks):
getattr
(
mock_instance
,
rescore_method
)
.
return_value
=
rescore_result
getattr
(
mock_instance
,
rescore_method
)
.
return_value
=
rescore_result
delattr
(
mock_instance
,
other_method
)
delattr
(
mock_instance
,
other_method
)
input_state
=
json
.
dumps
({
'done'
:
True
})
if
rescore_method
==
'rescore'
:
del
mock_instance
.
done
mock_instance
.
has_submitted_answer
.
return_value
=
True
else
:
mock_instance
.
done
=
True
num_students
=
10
num_students
=
10
self
.
_create_students_with_state
(
num_students
,
input_state
)
self
.
_create_students_with_state
(
num_students
)
task_entry
=
self
.
_create_input_entry
()
task_entry
=
self
.
_create_input_entry
()
with
patch
(
'lms.djangoapps.instructor_task.tasks_helper.get_module_for_descriptor_internal'
)
as
mock_get_module
:
with
patch
(
'lms.djangoapps.instructor_task.tasks_helper.get_module_for_descriptor_internal'
)
as
mock_get_module
:
mock_get_module
.
return_value
=
mock_instance
mock_get_module
.
return_value
=
mock_instance
...
...
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