Remove python 2.6 and cleanup tox.ini

* Remove support for python 2.6
* Remove skipsdist : Needs to be set only if 
  sdist is expensive
* 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


Change-Id: If054a295dc58636bd317491e0f6cd454d1821a3e
This commit is contained in:
Davanum Srinivas 2015-11-14 23:06:56 -05:00 committed by Davanum Srinivas (dims)
parent 3c1dfd8c9d
commit 4ac05b928d
1 changed files with 1 additions and 4 deletions

View File

@ -1,12 +1,9 @@
[tox]
minversion = 1.6
skipsdist = True
envlist = py26,py27,py34,py27-zookeeper,py34-zookeeper,py27-redis,py34-redis,py27-sentinel,py34-sentinel,py27-memcached,py34-memcached,py27-postgresql,py34-postgresql,py27-mysql,py34-mysql,pep8
envlist = py27,py34,py27-zookeeper,py34-zookeeper,py27-redis,py34-redis,py27-sentinel,py34-sentinel,py27-memcached,py34-memcached,py27-postgresql,py34-postgresql,py27-mysql,py34-mysql,pep8
[testenv]
deps = -r{toxinidir}/test-requirements.txt
install_command = pip install -U {opts} {packages}
usedevelop = True
commands = python setup.py testr --slowest --testr-args="{posargs}"
[testenv:venv]