You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-agent/tox.ini

21 lines
404 B
INI

[tox]
envlist = py27,py34
[pep8]
max-line-length = 100
[testenv]
deps=
pytest
mock
pep8
coverage
pylint
semver
pydocstyle
commands=
pep8 trezor_agent
pylint --reports=no --rcfile .pylintrc trezor_agent
pydocstyle trezor_agent
coverage run --omit='trezor_agent/__main__.py' --source trezor_agent -m py.test -v trezor_agent
coverage report
coverage html