dpkt/tox.ini

35 lines
562 B
INI
Raw Normal View History

2014-12-18 15:48:20 +00:00
[tox]
2014-12-29 21:16:01 +00:00
envlist = 2.6, 2.7
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
[testenv:docs]
changedir=docs/
deps =
sphinx
commands =
sphinx-build -b linkcheck ./ _build/
sphinx-build -b html ./ _build/
[pytest]
addopts= -v --cov-report term-missing
python_files=*.py
python_functions=test
2014-12-29 21:16:01 +00:00
norecursedirs=.tox .git *.egg-info __pycache__ storage