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 * Remove setenv : We can just use the default as we don't need any extra environment variables * Remove requirements.txt from deps, as this is already added automatically Change-Id: I5defad3ba70eac774a01b2137abbffcd812cd0d5
This commit is contained in:
parent
a1725700ab
commit
bdbe0111cd
9
tox.ini
9
tox.ini
@ -1,14 +1,9 @@
|
||||
[tox]
|
||||
minversion = 1.6
|
||||
envlist = py34,py26,py27,pep8
|
||||
skipsdist = True
|
||||
envlist = py34,py27,pep8
|
||||
|
||||
[testenv]
|
||||
usedevelop = True
|
||||
install_command = pip install -U {opts} {packages}
|
||||
setenv = VIRTUAL_ENV={envdir}
|
||||
deps = -r{toxinidir}/requirements.txt
|
||||
-r{toxinidir}/test-requirements.txt
|
||||
deps = -r{toxinidir}/test-requirements.txt
|
||||
# Functional tests with Eventlet involve monkeypatching, so force them to be
|
||||
# run in a separate process
|
||||
whitelist_externals = env
|
||||
|
Loading…
Reference in New Issue
Block a user