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
7a722780
Commit
7a722780
authored
Jan 27, 2014
by
Stephen Sanchez
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #13 from edx/sanchez/bdd
Updating the settings files to pick up the new applications
parents
c92ea9ca
83560cea
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
7 deletions
+9
-7
apps/openassessment/peer/features/required_reviews.py
+1
-2
apps/openassessment/peer/features/required_reviews_validation.py
+4
-0
settings/base.py
+1
-3
settings/test.py
+1
-1
setup.py
+2
-1
No files found.
apps/openassessment/peer/features/required_reviews.py
View file @
7a722780
...
...
@@ -31,4 +31,4 @@ def then_the_student_is_notified_they_did_not_review_enough_peer_submissions(ste
@step
(
u'Then: The student receives reviews.'
)
def
then_the_student_receives_reviews
(
step
):
pass
\ No newline at end of file
pass
apps/openassessment/peer/features/required_reviews_validation.py
View file @
7a722780
...
...
@@ -13,6 +13,10 @@ def and_i_configure_required_reviewers_per_student(step, required):
def
and_i_configure_required_reviewers_per_student
(
step
,
required
):
pass
@step
(
u'And: I configure "([^"]*)" required reviews per submission'
)
def
and_i_configure_group1_required_reviews_per_submission
(
step
,
group1
):
pass
@step
(
u'Then: The validation "([^"]*)"'
)
def
then_the_validation
(
step
,
result
):
pass
settings/base.py
View file @
7a722780
...
...
@@ -129,10 +129,8 @@ INSTALLED_APPS = (
'django.contrib.staticfiles'
,
'django.contrib.admin'
,
'django.contrib.admindocs'
,
'peer_grading'
,
'common_grading'
,
'submissions'
,
'open
response
.peer'
,
'open
assessment
.peer'
,
)
# A sample logging configuration. The only tangible logging
...
...
settings/test.py
View file @
7a722780
...
...
@@ -5,7 +5,7 @@ Test-specific Django settings.
# Inherit from base settings
from
.base
import
*
TEST_APPS
=
(
'
peer_grading'
,
'common_grading
'
,)
TEST_APPS
=
(
'
openassessment.peer'
,
'submissions
'
,)
# Configure nose
NOSE_ARGS
=
[
...
...
setup.py
View file @
7a722780
...
...
@@ -2,7 +2,7 @@
from
setuptools
import
setup
PACKAGES
=
[
'
common_grading'
,
'peer_grading
'
]
PACKAGES
=
[
'
submissions'
,
'openassessment.peer
'
]
def
is_requirement
(
line
):
...
...
@@ -39,5 +39,6 @@ setup(
'Programming Language :: Python'
,
],
packages
=
PACKAGES
,
package_dir
=
{
''
:
'apps'
},
install_requires
=
REQUIREMENTS
,
)
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