Commit 26861d83 by Calen Pennington

Install all requirements before running tests

parent 973b5762
...@@ -29,6 +29,8 @@ CLOBBER.include('build') ...@@ -29,6 +29,8 @@ CLOBBER.include('build')
CLEAN.include("#{BUILD_DIR}/*.deb", "#{BUILD_DIR}/util") CLEAN.include("#{BUILD_DIR}/*.deb", "#{BUILD_DIR}/util")
task :test do task :test do
sh("pip install -r pre-requirements.txt")
sh("pip install -r requirements.txt")
sh("pip install -r test-requirements.txt") sh("pip install -r test-requirements.txt")
sh("django-admin.py test --settings=envs.test --pythonpath=. $(ls djangoapps)") sh("django-admin.py test --settings=envs.test --pythonpath=. $(ls djangoapps)")
end end
......
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