Commit 7a722780 by Stephen Sanchez

Merge pull request #13 from edx/sanchez/bdd

Updating the settings files to pick up the new applications
parents c92ea9ca 83560cea
...@@ -31,4 +31,4 @@ def then_the_student_is_notified_they_did_not_review_enough_peer_submissions(ste ...@@ -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.') @step(u'Then: The student receives reviews.')
def then_the_student_receives_reviews(step): def then_the_student_receives_reviews(step):
pass pass
\ No newline at end of file
...@@ -13,6 +13,10 @@ def and_i_configure_required_reviewers_per_student(step, required): ...@@ -13,6 +13,10 @@ def and_i_configure_required_reviewers_per_student(step, required):
def and_i_configure_required_reviewers_per_student(step, required): def and_i_configure_required_reviewers_per_student(step, required):
pass 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 "([^"]*)"') @step(u'Then: The validation "([^"]*)"')
def then_the_validation(step, result): def then_the_validation(step, result):
pass pass
...@@ -129,10 +129,8 @@ INSTALLED_APPS = ( ...@@ -129,10 +129,8 @@ INSTALLED_APPS = (
'django.contrib.staticfiles', 'django.contrib.staticfiles',
'django.contrib.admin', 'django.contrib.admin',
'django.contrib.admindocs', 'django.contrib.admindocs',
'peer_grading',
'common_grading',
'submissions', 'submissions',
'openresponse.peer', 'openassessment.peer',
) )
# A sample logging configuration. The only tangible logging # A sample logging configuration. The only tangible logging
......
...@@ -5,7 +5,7 @@ Test-specific Django settings. ...@@ -5,7 +5,7 @@ Test-specific Django settings.
# Inherit from base settings # Inherit from base settings
from .base import * from .base import *
TEST_APPS = ('peer_grading', 'common_grading',) TEST_APPS = ('openassessment.peer', 'submissions',)
# Configure nose # Configure nose
NOSE_ARGS = [ NOSE_ARGS = [
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
from setuptools import setup from setuptools import setup
PACKAGES = ['common_grading', 'peer_grading'] PACKAGES = ['submissions', 'openassessment.peer']
def is_requirement(line): def is_requirement(line):
...@@ -39,5 +39,6 @@ setup( ...@@ -39,5 +39,6 @@ setup(
'Programming Language :: Python', 'Programming Language :: Python',
], ],
packages=PACKAGES, packages=PACKAGES,
package_dir={'': 'apps'},
install_requires=REQUIREMENTS, install_requires=REQUIREMENTS,
) )
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