Files
deb-kazoo/tox.ini
Jeff Widman af9b4cab39 chore: stop bundling virtualenv
We bundled our own virtualenv copy to work around bugs in travis-ci
(0cdb38186e). That's a 5+ year old bug
which isn't around anymore.

So no need to keep bundling virtualenv.

closes #462
2017-07-24 21:22:20 +02:00

38 lines
805 B
INI

[tox]
minversion = 1.6
skipsdist = True
envlist =
pep8,
py27,
py27-gevent,
py27-eventlet,
py34,
py35,
py36,
pypy
[testenv:pep8]
commands = flake8 {posargs}
[testenv]
usedevelop = True
install_command = pip install {opts} {packages}
setenv =
VIRTUAL_ENV={envdir}
ZOOKEEPER_VERSION={env:ZOOKEEPER_VERSION:}
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/requirements_sphinx.txt
commands = {toxinidir}/ensure-zookeeper-env.sh nosetests {posargs: -d -v --with-coverage kazoo.tests}
[testenv:py27-gevent]
deps = {[testenv]deps}
-r{toxinidir}/requirements_gevent.txt
[testenv:py27-eventlet]
deps = {[testenv]deps}
-r{toxinidir}/requirements_eventlet.txt
[flake8]
builtins = _
exclude = .venv,.tox,dist,doc,*egg,.git,build,tools,local,docs,zookeeper