From e131460c8286316766172fcde049906794267845 Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Fri, 5 Apr 2013 13:45:29 -0700 Subject: [PATCH] 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 --- tox.ini | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tox.ini b/tox.ini index f1160e70..8559ddfb 100644 --- a/tox.ini +++ b/tox.ini @@ -13,6 +13,9 @@ commands = flake8 [testenv:sdist] commands = python setup.py sdist {posargs} +[testenv:venv] +commands = {posargs} + [flake8] ignore = E125 show-source = True