git-restack/tox.ini
Clark Boylan e131460c82 Add venv testenv to tox.ini.
The automagic pypi publishing of releases through jenkins.openstack.org
depends on tox having a testenv called venv. Add this new testenv so
that git-review can be released automagically.

Change-Id: I89d78a22c13f94b5af3cda1115c8068424d42b34
2013-04-05 13:45:29 -07:00

24 lines
400 B
INI

[tox]
envlist = py26,py27,pep8
[testenv]
setenv = VIRTUAL_ENV={envdir}
[testenv:pep8]
deps = flake8
argparse
hacking
commands = flake8
[testenv:sdist]
commands = python setup.py sdist {posargs}
[testenv:venv]
commands = {posargs}
[flake8]
ignore = E125
show-source = True
exclude = .venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build
filename = git-review,setup.py