Merge pull request #129 from cabrera/tox_support

feat: tox support
This commit is contained in:
Gabriel Falcão
2013-12-13 11:08:45 -08:00

13
tox.ini Normal file
View File

@@ -0,0 +1,13 @@
[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