Skip to content

Commit bac0718

Browse files
committed
Rename requires files to standard names.
Rename tools/pip-requires to requirements.txt and tools/test-requires to test-requirements.txt. These are standard files, and tools in the general world are growing intelligence about them. Change-Id: I903213fda94a833335abaa7ad9a90bbb688ec15a Fixes: bug #1179008
1 parent 4430092 commit bac0718

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

File renamed without changes.

tools/install_venv.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ def print_help():
4848
def main(argv):
4949
root = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
5050
venv = os.path.join(root, ".venv")
51-
pip_requires = os.path.join(root, "tools", "pip-requires")
52-
test_requires = os.path.join(root, "tools", "test-requires")
51+
pip_requires = os.path.join(root, "requirements.txt")
52+
test_requires = os.path.join(root, "test-requirements.txt")
5353
py_version = "python%s.%s" % (sys.version_info[0], sys.version_info[1])
5454
project = "python-openstackclient"
5555
install = install_venv.InstallVenv(root, venv, pip_requires, test_requires,

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ setenv = VIRTUAL_ENV={envdir}
66
LANG=en_US.UTF-8
77
LANGUAGE=en_US:en
88
LC_ALL=C
9-
deps = -r{toxinidir}/tools/pip-requires
10-
-r{toxinidir}/tools/test-requires
9+
deps = -r{toxinidir}/requirements.txt
10+
-r{toxinidir}/test-requirements.txt
1111
commands = python setup.py testr --testr-args='{posargs}'
1212

1313
[testenv:pep8]

0 commit comments

Comments
 (0)