diff options
| author | Sebastian Thiel <byronimo@gmail.com> | 2014-11-15 13:38:56 +0100 |
|---|---|---|
| committer | Sebastian Thiel <byronimo@gmail.com> | 2014-11-15 13:38:56 +0100 |
| commit | 9c39afa1f85f3293ad2ccef684ff62bf0a36e73c (patch) | |
| tree | 7ec6d1ebd46e9b89003e8ea4cbd9e18618842473 | |
| parent | 15c4a95ada66977c8cf80767bf1c72a45eb576b2 (diff) | |
| parent | 18fff4d4a28295500acd531a1b97bc3b89fad07e (diff) | |
| download | GitPython-9c39afa1f85f3293ad2ccef684ff62bf0a36e73c.tar.gz GitPython-9c39afa1f85f3293ad2ccef684ff62bf0a36e73c.zip | |
Merge pull request #202 from hashar/tox
tox commands now have {posargs} as argument
| -rw-r--r-- | tox.ini | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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} |
