diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-01-13 21:55:12 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-01-13 21:55:12 -0500 |
commit | c1fd2be467947c455aef7687a7ecaa4de1f300b1 (patch) | |
tree | 05000742b77a033a087ec29e3afbacabdd759ec6 | |
parent | 34c075e6f331d146a617417e646170e8847c39e4 (diff) | |
download | cryptography-c1fd2be467947c455aef7687a7ecaa4de1f300b1.tar.gz cryptography-c1fd2be467947c455aef7687a7ecaa4de1f300b1.tar.bz2 cryptography-c1fd2be467947c455aef7687a7ecaa4de1f300b1.zip |
pass posargs via tox so --backend can be used for tox envs
-rw-r--r-- | tox.ini | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |