aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-01-13 21:55:12 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-01-13 21:55:12 -0500
commitc1fd2be467947c455aef7687a7ecaa4de1f300b1 (patch)
tree05000742b77a033a087ec29e3afbacabdd759ec6 /tox.ini
parent34c075e6f331d146a617417e646170e8847c39e4 (diff)
downloadcryptography-c1fd2be467947c455aef7687a7ecaa4de1f300b1.tar.gz
cryptography-c1fd2be467947c455aef7687a7ecaa4de1f300b1.tar.bz2
cryptography-c1fd2be467947c455aef7687a7ecaa4de1f300b1.zip
pass posargs via tox so --backend can be used for tox envs
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini4
1 files changed, 2 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index ff5df360..5ff08779 100644
--- a/tox.ini
+++ b/tox.ini
@@ -8,7 +8,7 @@ deps =
pretend
pytest
commands =
- coverage run --source=cryptography/,tests/ -m pytest --capture=no --strict
+ coverage run --source=cryptography/,tests/ -m pytest --capture=no --strict {posargs}
coverage report -m
[testenv:docs]
@@ -28,7 +28,7 @@ commands =
# Temporarily disable coverage on pypy because of performance problems with
# coverage.py on pypy.
[testenv:pypy]
-commands = py.test --capture=no --strict
+commands = py.test --capture=no --strict {posargs}
[testenv:pep8]
deps = flake8