Fix install_venv.py requirements file

I missed this in https://review.openstack.org/#/c/29876/
(but Gordon noticed)

Change-Id: Ie00cae414ae44bbd258910a2628174487c9756e3
This commit is contained in:
Angus Salkeld
2013-05-23 09:53:39 +10:00
parent bdac572db8
commit a82e53121a

View File

@@ -56,8 +56,8 @@ def main(argv):
if os.environ.get('venv'):
venv = os.environ['venv']
pip_requires = os.path.join(root, 'tools', 'pip-requires')
test_requires = os.path.join(root, 'tools', 'test-requires')
pip_requires = os.path.join(root, 'requirements.txt')
test_requires = os.path.join(root, 'test-requirements.txt')
py_version = "python%s.%s" % (sys.version_info[0], sys.version_info[1])
project = 'Ceilometerclient'
install = install_venv.InstallVenv(root, venv, pip_requires, test_requires,