dumb-init/tox.ini
Anthony Sottile 341d998eaa Minor updates
2018-05-15 20:40:27 -07:00

26 lines
494 B
INI

[tox]
envlist = py27,py36,gcov
[testenv]
deps = -r{toxinidir}/requirements-dev.txt
commands =
python -m pytest
[testenv:gcov]
skip_install = True
commands =
{toxinidir}/ci/gcov-build {envbindir}
{[testenv]commands}
{toxinidir}/ci/gcov-report
[testenv:pre-commit]
basepython = /usr/bin/python3.6
commands = pre-commit {posargs:run --all-files}
[flake8]
max-line-length = 119
[pep8]
# autopep8 will rewrite lines to be shorter, even though we raised the length
ignore = E501