cleanup dependency in tox.ini

This removes unnecessary dependency from deps list because
all tests except keystone don't require keystone package.

Change-Id: I67cb4b74782e565082c1fc1ebab6f5fe6204a38b
This commit is contained in:
Kota Tsuyuzaki 2014-06-30 02:09:46 -07:00
parent 7f1e9516a8
commit 6eadd46377
1 changed files with 4 additions and 2 deletions

View File

@ -8,9 +8,8 @@ whitelist_externals =/bin/bash
usedevelop = True
install_command = pip install {opts} {packages}
deps =
https://launchpad.net/swift/juno/2.0.0/+download/swift-2.0.0.tar.gz
https://launchpad.net/keystone/icehouse/2014.1.1/+download/keystone-2014.1.1.tar.gz
-r{toxinidir}/test-requirements.txt
https://launchpad.net/swift/juno/2.0.0/+download/swift-2.0.0.tar.gz
commands = nosetests {posargs:swift3/test/unit}
setenv = VIRTUAL_ENV={envdir}
NOSE_WITH_OPENSTACK=1
@ -29,6 +28,9 @@ setenv = AUTH=tempauth
[testenv:keystone]
commands = /bin/bash {posargs:swift3/test/functional/run_test.sh}
setenv = AUTH=keystone
deps =
{[testenv]deps}
https://launchpad.net/keystone/icehouse/2014.1.1/+download/keystone-2014.1.1.tar.gz
[testenv:pylint]
commands = pylint -E swift3