From 5d367688763792532a3fa77185e773a570942c70 Mon Sep 17 00:00:00 2001 From: Khai Do Date: Mon, 10 Aug 2015 13:53:31 -0700 Subject: [PATCH] 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 --- tox.ini | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 9e6eb3c..baf889f 100644 --- a/tox.ini +++ b/tox.ini @@ -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]