From a712fe020f35b3dd3506ef1633378a5b6bdd3716 Mon Sep 17 00:00:00 2001 From: Calen Pennington Date: Tue, 15 May 2012 13:18:59 -0400 Subject: [PATCH] Don't try and install stuff from requirements.txt --- rakefile | 3 --- 1 file changed, 3 deletions(-) diff --git a/rakefile b/rakefile index 619c89f9f4..1d4d7fd998 100644 --- a/rakefile +++ b/rakefile @@ -29,9 +29,6 @@ CLOBBER.include('build') CLEAN.include("#{BUILD_DIR}/*.deb", "#{BUILD_DIR}/util") task :test do - sh("pip install -r pre-requirements.txt") - sh("pip install -r requirements.txt") - sh("pip install -r test-requirements.txt") sh("django-admin.py test --settings=envs.test --pythonpath=. $(ls djangoapps)") end