removing rake and outdated references to it

This commit is contained in:
Christine Lytwynec
2014-07-31 15:08:09 -04:00
parent 44c4102096
commit eb3c1ab9a8
28 changed files with 15 additions and 634 deletions

View File

@@ -74,4 +74,4 @@ fi
# Activate the Python virtualenv
source $HOME/edx-venv/bin/activate
rake test:acceptance:${TEST_SUITE}["-v 3 ${FEATURE_PATH}"]
paver test_acceptance -s ${TEST_SUITE} --extra_args="-v 3 ${FEATURE_PATH}"

View File

@@ -37,7 +37,7 @@ class DjangoEventHandler(FileSystemEventHandler):
break
if __name__ == "__main__":
event_handler = DjangoEventHandler(Popen(['rake', 'lms']))
event_handler = DjangoEventHandler(Popen(['paver', 'lms']))
observer = Observer()
for dir in WATCH_DIRS:
observer.schedule(event_handler, dir, recursive=True)