summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2014-11-15 13:38:56 +0100
committerSebastian Thiel <byronimo@gmail.com>2014-11-15 13:38:56 +0100
commit9c39afa1f85f3293ad2ccef684ff62bf0a36e73c (patch)
tree7ec6d1ebd46e9b89003e8ea4cbd9e18618842473
parent15c4a95ada66977c8cf80767bf1c72a45eb576b2 (diff)
parent18fff4d4a28295500acd531a1b97bc3b89fad07e (diff)
downloadgitpython-9c39afa1f85f3293ad2ccef684ff62bf0a36e73c.tar.gz
Merge pull request #202 from hashar/tox
tox commands now have {posargs} as argument
-rw-r--r--tox.ini6
1 files changed, 3 insertions, 3 deletions
diff --git a/tox.ini b/tox.ini
index 60bfb1d9..4d827357 100644
--- a/tox.ini
+++ b/tox.ini
@@ -2,15 +2,15 @@
envlist = py26,py27,flake8
[testenv]
-commands = nosetests
+commands = nosetests {posargs}
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
[testenv:cover]
-commands = nosetests --with-coverage
+commands = nosetests --with-coverage {posargs}
[testenv:flake8]
-commands = flake8
+commands = flake8 {posargs}
[testenv:venv]
commands = {posargs}