From ab849a9931ead4cc6a7ad49acad6a8630afa4f3d Mon Sep 17 00:00:00 2001 From: Joe Gordon Date: Tue, 14 Oct 2014 14:29:30 -0700 Subject: [PATCH] Have tox install via setup.py develop Tox 1.6 has a feature to install code into the virtualenv via 'setup.py develop' This makes it easier to source the tox virtualenv and test code changes. --- tox.ini | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tox.ini b/tox.ini index 2e2707b..85a51cf 100644 --- a/tox.ini +++ b/tox.ini @@ -1,8 +1,10 @@ [tox] +minversion = 1.6 envlist = py26,py27,py32,py33,py34 [testenv] +usedevelop = True deps = commands = python setup.py test -q