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

18 lines
357 B
INI

9 years ago
[tox]
envlist = py27,py34
skipsdist = True
9 years ago
[testenv]
deps=
pytest
mock
pep8
coverage
pylint
six
ecdsa
9 years ago
commands=
pep8 trezor_agent
pylint --report=no --rcfile .pylintrc trezor_agent
coverage run --omit='trezor_agent/__main__.py,trezor_agent/trezor/_library.py' --source trezor_agent/ -m py.test -v
9 years ago
coverage report