Files
deb-python-nose-parameterized/tox.ini
David Wolever 96593a3ea3 Make sure that setUp and tearDown methods work.
Previously setUp and tearDown would be called on the instance of the class
being tested, but the methods were pulled from the instance of the class
created during test enumeration. Now everything will work correctly.
2017-03-26 00:35:52 -04:00

16 lines
323 B
INI

[tox]
envlist=py{26,27,35,36,py}-{nose,nose2,pytest,unit,unit2}
[testenv]
deps=
nose
nose2: nose2
pytest: pytest>=2
unit2: unittest2
commands=
nose: nosetests
nose2: nose2
pytest: py.test parameterized/test.py
unit: python -m unittest parameterized.test
unit2: unit2 parameterized.test