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: I5fc4de208e6c2f6926238f6942bf4ca9804748e4
This commit is contained in:
Khai Do 2015-08-10 15:38:34 -07:00
parent 24de1df8df
commit cd183a4f43
1 changed files with 1 additions and 2 deletions

View File

@ -7,8 +7,7 @@ envlist = pep8, 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
[testenv:pep8]
commands = flake8