summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorZhenguo Niu <Niu.ZGlinux@gmail.com>2013-05-29 17:36:23 +0800
committerZhenguo Niu <Niu.ZGlinux@gmail.com>2013-05-29 17:38:13 +0800
commitbac0718764ac5e7cc22adf24d035db0be0cf90d9 (patch)
tree421ada3a47320135d028ea0267164c9b3dc3c211 /tox.ini
parent443009270621cd6ed26d61315ecbc108cc96916e (diff)
downloadpython-openstackclient-bac0718764ac5e7cc22adf24d035db0be0cf90d9.tar.gz
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
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini4
1 files changed, 2 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index f6de18d1..ece55df5 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 --testr-args='{posargs}'
[testenv:pep8]