Files
trezor-agent/tox.ini
Roman Zeyde 7f4269ab88 Add GitHub CI
Fixup a few pylint comments
2021-05-22 21:51:45 +03:00

25 lines
449 B
INI

[tox]
envlist = py3
[pycodestyle]
max-line-length = 100
[pep257]
add-ignore = D401
[testenv]
deps=
pytest
mock
pycodestyle
coverage
pylint
semver
pydocstyle
isort<5
commands=
pycodestyle libagent
# isort --skip-glob .tox -c -rc libagent
pylint --reports=no --rcfile .pylintrc libagent
pydocstyle libagent
coverage run --source libagent -m py.test -v libagent
coverage report
coverage html