diff options
author | Marc Abramowitz <marc@marc-abramowitz.com> | 2014-10-11 15:58:45 -0700 |
---|---|---|
committer | Marc Abramowitz <marc@marc-abramowitz.com> | 2014-10-11 15:58:45 -0700 |
commit | a23c2686487b050cf1edfd3532012a886ab0044c (patch) | |
tree | ea43fd7136c258684111f006e9cc5ed7819708f4 | |
parent | 2c923b60ebb68e23de2f6ba64a3ca226204b116c (diff) | |
download | external_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.ini | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2,4 +2,4 @@ envlist = py26,py27,py31,py32,py33,py34 [testenv] deps=pytest -commands=py.test +commands=py.test {posargs} |