From 8b813462b7e1573dd841e8f6d9d0d688321dc23d Mon Sep 17 00:00:00 2001 From: Steven Dake Date: Thu, 16 May 2013 09:31:51 -0700 Subject: [PATCH] Rename requires files to standard names From bug report: 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: I5d3bad7654e4ce101d19b40215d8c1cc93dd9832 Fixes: Bug #1179008 --- tools/pip-requires => requirements.txt | 0 tools/test-requires => test-requirements.txt | 0 tox.ini | 6 +++--- 3 files changed, 3 insertions(+), 3 deletions(-) rename tools/pip-requires => requirements.txt (100%) rename tools/test-requires => test-requirements.txt (100%) diff --git a/tools/pip-requires b/requirements.txt similarity index 100% rename from tools/pip-requires rename to requirements.txt diff --git a/tools/test-requires b/test-requirements.txt similarity index 100% rename from tools/test-requires rename to test-requirements.txt diff --git a/tox.ini b/tox.ini index 33e33d7..7ae1ea3 100644 --- a/tox.ini +++ b/tox.ini @@ -6,8 +6,8 @@ setenv = VIRTUAL_ENV={envdir} LANG=en_US.UTF-8 LANGUAGE=en_US:en LC_ALL=C -deps = -r{toxinidir}/tools/pip-requires - -r{toxinidir}/tools/test-requires +deps = -r{toxinidir}/requirements.txt + -r{toxinidir}/test-requirements.txt commands = python setup.py testr --slowest --testr-args='{posargs}' [tox:jenkins] @@ -19,7 +19,7 @@ commands = flake8 [testenv:pylint] setenv = VIRTUAL_ENV={envdir} -deps = -r{toxinidir}/tools/pip-requires +deps = -r{toxinidir}/requirements.txt pylint==0.26.0 commands = bash tools/lintstack.sh