summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorAngus Salkeld <asalkeld@redhat.com>2013-05-23 09:53:39 +1000
committerAngus Salkeld <asalkeld@redhat.com>2013-05-23 10:15:16 +1000
commita82e53121ad27e593d3e9edbe6f1bc0d4aeb366d (patch)
tree5ffdabfbd601b6898c254452ec3f50ec2e10905e /tools
parentbdac572db84e272f3b006023e83b13b77d849d25 (diff)
downloadpython-ceilometerclient-a82e53121ad27e593d3e9edbe6f1bc0d4aeb366d.tar.gz
Fix install_venv.py requirements file
I missed this in https://review.openstack.org/#/c/29876/ (but Gordon noticed) Change-Id: Ie00cae414ae44bbd258910a2628174487c9756e3
Diffstat (limited to 'tools')
-rw-r--r--tools/install_venv.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/install_venv.py b/tools/install_venv.py
index 7d69094..a11e784 100644
--- a/tools/install_venv.py
+++ b/tools/install_venv.py
@@ -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,