Stop specifying requirements.txt in tox.ini

As PBR already injects the contents of requirements.txt into
setup_requires, there is no need for tox to explicitly install them.
http://lists.openstack.org/pipermail/openstack-dev/2015-July/069663.html

Change-Id: Ice43f68c296178b1ad966d0ed5ed1add9bd13ce5
This commit is contained in:
Khai Do 2015-08-10 13:53:31 -07:00
parent 0a1b414f3a
commit 5d36768876
1 changed files with 1 additions and 2 deletions

View File

@ -7,8 +7,7 @@ envlist = pep8, py26, py27, pypy, py33, py34
setenv VIRTUAL_ENV={envdir}
usedevelop = True
install_command = pip install {opts} {packages}
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
deps = -r{toxinidir}/test-requirements.txt
commands = python setup.py testr --slowest --testr-args='{posargs}'
[testenv:cover]