cleanup tox.ini

* Remove usedevelop : only needed when skipsdist 
  is set to True
* Remove install_command : We can just use the 
  default, we don't need to override
* Remove setenv : We can just use the default as
  we don't need any extra environment variables
* sitepackages : default is already false


Change-Id: Id13307a8f7c21496e1d5aad20cd9e2146b8f2fbd
This commit is contained in:
Davanum Srinivas 2015-11-15 10:21:11 -05:00 committed by Davanum Srinivas (dims)
parent c383e0026a
commit a3f3bf8b1d

View File

@ -3,11 +3,7 @@ minversion = 1.6
envlist = pep8
[testenv]
usedevelop = True
install_command = pip install -U {opts} {packages}
deps = -r{toxinidir}/test-requirements.txt
setenv = VIRTUAL_ENV={envdir}
sitepackages = False
downloadcache = {toxworkdir}/_download
[testenv:pep8]