Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-ora2
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-ora2
Commits
c7e10854
Commit
c7e10854
authored
Nov 20, 2015
by
Eric Fischer
Committed by
Andy Armstrong
Dec 15, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Small fixes to rebase to edx-platform
parent
25eef348
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
9 additions
and
10 deletions
+9
-10
manage.py
+1
-0
openassessment/assessment/api/staff.py
+1
-1
openassessment/workflow/models.py
+0
-2
openassessment/workflow/test/test_api.py
+2
-2
requirements/test-acceptance.txt
+1
-1
scripts/render-templates.sh
+1
-1
scripts/render_templates.py
+2
-2
scripts/test-python.sh
+1
-1
No files found.
manage.py
View file @
c7e10854
...
...
@@ -16,6 +16,7 @@ if __name__ == "__main__":
import
logging
logging
.
captureWarnings
(
True
)
sys
.
argv
.
append
(
'--noinput'
)
sys
.
argv
.
append
(
'--logging-clear-handlers'
)
from
django.core.management
import
execute_from_command_line
execute_from_command_line
(
sys
.
argv
)
openassessment/assessment/api/staff.py
View file @
c7e10854
...
...
@@ -242,7 +242,7 @@ def create_assessment(
raise
StaffAssessmentInternalError
(
error_message
)
@transaction.
commit_on_success
@transaction.
atomic
def
_complete_assessment
(
submission_uuid
,
scorer_id
,
...
...
openassessment/workflow/models.py
View file @
c7e10854
...
...
@@ -112,8 +112,6 @@ class AssessmentWorkflow(TimeStampedModel, StatusModel):
@classmethod
@transaction.atomic
def
include_staff_in_class
(
cls
):
if
'staff'
not
in
cls
.
STEPS
:
def
start_workflow
(
cls
,
submission_uuid
,
step_names
,
on_init_params
):
"""
Start a new workflow.
...
...
openassessment/workflow/test/test_api.py
View file @
c7e10854
...
...
@@ -15,7 +15,7 @@ from openassessment.assessment.models import StudentTrainingWorkflow
import
submissions.api
as
sub_api
from
openassessment.assessment.api
import
peer
as
peer_api
from
openassessment.assessment.api
import
self
as
self_api
from
openassessment.workflow.models
import
AssessmentWorkflow
from
openassessment.workflow.models
import
AssessmentWorkflow
,
AssessmentApiLoadError
from
openassessment.workflow.errors
import
AssessmentWorkflowInternalError
...
...
@@ -368,7 +368,7 @@ class TestAssessmentWorkflowApi(CacheResetTest):
item_id
=
ITEM_1
[
'item_id'
]
)
with
self
.
assertRaises
(
Assessment
WorkflowInternal
Error
):
with
self
.
assertRaises
(
Assessment
ApiLoad
Error
):
workflow_api
.
update_from_assessments
(
submission
[
'uuid'
],
{})
def
test_cancel_the_assessment_workflow
(
self
):
...
...
requirements/test-acceptance.txt
View file @
c7e10854
bok-choy==0.4.7
ddt==
0.8
.0
ddt==
1.0
.0
nose==1.3.3
scripts/render-templates.sh
View file @
c7e10854
...
...
@@ -3,5 +3,5 @@
cd
`
dirname
$BASH_SOURCE
`
&&
cd
..
echo
"Generating HTML fixtures for JavaScript tests..."
export
DJANGO_SETTINGS_MODULE
=
${
DJANGO_SETTINGS_MODULE
:-
"settings.test"
}
export
DJANGO_SETTINGS_MODULE
=
${
DJANGO_SETTINGS_MODULE
:-
"settings.test
_with_coverage
"
}
./scripts/render_templates.py openassessment/xblock/static/js/fixtures/templates.json
scripts/render_templates.py
View file @
c7e10854
...
...
@@ -30,8 +30,8 @@ import dateutil.parser
import
pytz
# This is a bit of a hack to ensure that the root repo directory
# is in the Python path, so Django can find the settings module.
sys
.
path
.
append
(
os
.
path
.
dirname
(
os
.
path
.
dirname
(
__file__
)))
# is in the
front of the
Python path, so Django can find the settings module.
sys
.
path
.
insert
(
1
,
os
.
path
.
dirname
(
os
.
path
.
dirname
(
__file__
)))
import
django
from
django.template.context
import
Context
from
django.template.loader
import
get_template
...
...
scripts/test-python.sh
View file @
c7e10854
...
...
@@ -6,5 +6,5 @@ cd `dirname $BASH_SOURCE` && cd ..
git clean
-xfd
"./storage/test/"
echo
"Running Python tests..."
export
DJANGO_SETTINGS_MODULE
=
${
DJANGO_SETTINGS_MODULE
:-
"settings.test"
}
export
DJANGO_SETTINGS_MODULE
=
${
DJANGO_SETTINGS_MODULE
:-
"settings.test
_with_coverage
"
}
python manage.py
test
$1
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