Update tox.ini for jenkins.

The tox documentation is wrong, it looks for [tox:jenkins] instead
of [tox:hudson].  Also, run "pip freeze" before running tests from
within the virtualenv so we have a record of all versions used
in each test run in Jenkins.

Change-Id: Id0f34247f4545268f21dacb860d2e0fe72677a11
This commit is contained in:
James E. Blair 2012-03-09 02:06:05 +00:00
parent 3b229c3945
commit cb70ff9f51

View File

@ -17,8 +17,11 @@ commands = nosetests --with-coverage --cover-html --cover-erase --cover-package=
[testenv:venv]
commands = {posargs}
[testenv:hudson]
[testenv:jenkins]
downloadcache = ~/cache/pip
commands =
pip freeze
nosetests
[testenv:jenkins26]
basepython = python2.6