Files
deb-python-httpretty/tox.ini
Alejandro Cabrera c0f1ff034e feat: tox support
tox makes it easy to verify whether tests pass across a variety of
different python versions.

This patch adds that support.
2013-12-13 11:18:57 -05:00

14 lines
414 B
INI

[tox]
envlist = py26, py27
[testenv]
deps = -r{toxinidir}/requirements.txt
commands = nosetests -s --verbosity=2 --with-coverage --cover-erase --cover-inclusive tests/unit --cover-package=httpretty
[testenv:functional]
commands = nosetests -s --verbosity=2 --with-coverage --cover-erase --cover-inclusive tests/functional --cover-package=httpretty
[testenv:pep8]
deps = flake8
commands = flake8 httpretty tests