aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Abramowitz <marc@marc-abramowitz.com>2014-10-11 15:58:45 -0700
committerMarc Abramowitz <marc@marc-abramowitz.com>2014-10-11 15:58:45 -0700
commita23c2686487b050cf1edfd3532012a886ab0044c (patch)
treeea43fd7136c258684111f006e9cc5ed7819708f4
parent2c923b60ebb68e23de2f6ba64a3ca226204b116c (diff)
downloadexternal_python_setuptools-a23c2686487b050cf1edfd3532012a886ab0044c.tar.gz
external_python_setuptools-a23c2686487b050cf1edfd3532012a886ab0044c.tar.bz2
external_python_setuptools-a23c2686487b050cf1edfd3532012a886ab0044c.zip
tox.ini: Add {posargs} to py.test invocation
This allows you to specify args on the tox command line that get passed through to py.test -- e.g.: tox -e py27 -- -k testResolve --tb=short setuptools/tests
-rw-r--r--tox.ini2
1 files changed, 1 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 06421a73..1ac46202 100644
--- a/tox.ini
+++ b/tox.ini
@@ -2,4 +2,4 @@
envlist = py26,py27,py31,py32,py33,py34
[testenv]
deps=pytest
-commands=py.test
+commands=py.test {posargs}