summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorMonty Taylor <mordred@inaugust.com>2013-05-18 09:50:14 -0700
committerMonty Taylor <mordred@inaugust.com>2013-05-18 09:50:14 -0700
commit874249e30f2a6f9fbd96455f7146b367d1c71072 (patch)
tree1fc0dfcf5f10846ad40abb651379709ea06e12cc /tools
parent8d0228837c40c02d93d80ae0a179275ac2d7f277 (diff)
downloadoslo-874249e30f2a6f9fbd96455f7146b367d1c71072.tar.gz
oslo-874249e30f2a6f9fbd96455f7146b367d1c71072.tar.xz
oslo-874249e30f2a6f9fbd96455f7146b367d1c71072.zip
Add support for requirements.txt.
In prep for moving the projects to requirements.txt and test-requirements.txt, we need to have our legacy install_venv codebase support finding requirements in the right place. Change-Id: I0f300c6bb1792c81e2133a41a5631f2dd4c021ba
Diffstat (limited to 'tools')
-rw-r--r--tools/patch_tox_venv.py16
1 files changed, 14 insertions, 2 deletions
diff --git a/tools/patch_tox_venv.py b/tools/patch_tox_venv.py
index e23cf74..a3340f2 100644
--- a/tools/patch_tox_venv.py
+++ b/tools/patch_tox_venv.py
@@ -20,13 +20,25 @@ import sys
import install_venv_common as install_venv
+def first_file(file_list):
+ for candidate in file_list:
+ if os.path.exists(candidate):
+ return candidate
+
+
def main(argv):
root = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
venv = os.environ['VIRTUAL_ENV']
- pip_requires = os.path.join(root, 'tools', 'pip-requires')
- test_requires = os.path.join(root, 'tools', 'test-requires')
+ pip_requires = first_file([
+ os.path.join(root, 'requirements.txt'),
+ os.path.join(root, 'tools', 'pip-requires'),
+ ])
+ test_requires = first_file([
+ os.path.join(root, 'test-requirements.txt'),
+ os.path.join(root, 'tools', 'test-requires'),
+ ])
py_version = "python%s.%s" % (sys.version_info[0], sys.version_info[1])
project = 'oslo'
install = install_venv.InstallVenv(root, venv, pip_requires, test_requires,