view tox.ini @ 5016:46662961d58d

tox.ini: Add nose and pytest deps
author Marc Abramowitz <marc@marc-abramowitz.com>
date Tue, 14 Apr 2015 15:35:11 -0700
parents 2481c0a1ed31
children 9c5e6984bd0e
line wrap: on
line source

[tox]
envlist = py{26,27}-{pytest,nose}

[testenv]
deps =
    nose: nose
    pytest: pytest
commands =
    nose: nosetests {posargs}
    pytest: py.test {posargs}