From fb082c34c5818e63dad9b011ce9bae724cb2d2ae Mon Sep 17 00:00:00 2001 From: Ian Bicking Date: Tue, 28 Oct 2008 00:50:09 -0500 Subject: [PATCH] [svn r21072] add install argument to all-package tester --- tests/test_all_pip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_all_pip.py b/tests/test_all_pip.py index a50f414e0..3c4dd7875 100644 --- a/tests/test_all_pip.py +++ b/tests/test_all_pip.py @@ -45,7 +45,7 @@ def test_packages(output, pending_fn): assert not code, "virtualenv failed" print 'Trying installation of %s' % dest_dir code = subprocess.call([os.path.join(dest_dir, 'bin', 'python'), - pip_fn, package]) + pip_fn, 'install', package]) if code: print 'Installation of %s failed' % package print 'Now checking easy_install...'