From 51939f985f390423ec057b5e1bcf1f255708785c Mon Sep 17 00:00:00 2001 From: James Saryerwinnie Date: Thu, 15 Nov 2012 21:04:24 -0800 Subject: [PATCH] Allow args to be passed through to tox This allow just the unittests to be run with tox, e.g: tox test_fakeredis.py:TestFakeRedis --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 7857b4e..fd8d7cb 100644 --- a/tox.ini +++ b/tox.ini @@ -2,7 +2,7 @@ envlist = py26, py27 [testenv] -commands = nosetests -v +commands = nosetests -v {posargs} deps = unittest2 nose