# HG changeset patch # User Marc Abramowitz # Date 2015-04-14 22:35:11 # Node ID 46662961d58d4cf86d8353ef98766b84bd2bff57 # Parent 2481c0a1ed310ebbf7fa1ce6004243c0a517deff tox.ini: Add nose and pytest deps diff --git a/tox.ini b/tox.ini --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,10 @@ [tox] -envlist = py26, py27 +envlist = py{26,27}-{pytest,nose} [testenv] -commands = nosetests +deps = + nose: nose + pytest: pytest +commands = + nose: nosetests {posargs} + pytest: py.test {posargs}