mirror of
https://github.com/romanz/amodem.git
synced 2026-02-05 16:26:22 +08:00
15 lines
285 B
INI
15 lines
285 B
INI
[tox]
|
|
envlist = py3
|
|
[testenv]
|
|
deps=
|
|
pytest
|
|
mock
|
|
pycodestyle
|
|
coverage
|
|
pylint
|
|
commands=
|
|
pycodestyle amodem/ scripts/
|
|
pylint --extension-pkg-whitelist=numpy --reports=no amodem --rcfile .pylintrc
|
|
coverage run --source amodem/ --omit="*/__main__.py" -m py.test -v
|
|
coverage report
|