From 712e663ffc4c908c1ec548daa5ffef5e6797df2c Mon Sep 17 00:00:00 2001 From: Vincent Driessen Date: Sat, 26 Jul 2014 08:38:17 +0200 Subject: [PATCH] Allow passing in positional arguments via tox to pytest. See docs for details: http://tox.readthedocs.org/en/latest/example/general.html --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index cc912eb..637c39a 100644 --- a/tox.ini +++ b/tox.ini @@ -2,7 +2,7 @@ envlist=py26,py27,py33,py34,pypy [testenv] -commands=py.test --cov rq +commands=py.test --cov rq {posargs} deps= pytest pytest-cov