dpkt/tox.ini

36 lines
553 B
INI
Raw Normal View History

2014-12-18 15:48:20 +00:00
[tox]
envlist = py26, py27, docs
2014-12-18 15:48:20 +00:00
[testenv]
install_command =
pip install {opts} {packages}
deps =
coverage
pytest
pytest-cov
stdeb
commands =
py.test --cov=dpkt dpkt
coverage combine
[testenv:style]
deps =
flake8
commands =
python setup.py flake8
2014-12-29 21:22:56 +00:00
[testenv:coveralls]
deps =
coveralls
usedevelop = true
commands =
coverage combine
coverage report
coveralls
2014-12-18 15:48:20 +00:00
[testenv:docs]
changedir=docs
deps = -rdocs/requirements.txt
commands = sphinx-build -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
2014-12-18 15:48:20 +00:00