From 35648378ef61ea3c3a2641331ef5282da2c749bc Mon Sep 17 00:00:00 2001 From: behackett Date: Fri, 19 Oct 2012 17:37:17 -0700 Subject: [PATCH] Fix up tox.ini - Don't test python 3.0 - Tox no longer supports python 2.4 - Add a dependency on nose - Disable C extension testing for now --- tox.ini | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index b0cc88d00..79b7f9b4e 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,12 @@ # and then run "tox" from this directory. [tox] -envlist = py24, py25, py26, py27, py30, py31, py32, py33, pypy, jython +envlist = py25, py26, py27, py31, py32, py33, pypy, jython [testenv] -commands = python setup.py test +commands = + # TODO: Figure out C extensions + {envpython} setup.py --no_ext test + +deps = + nose