dumb-init/tox.ini
2017-02-24 16:46:55 -08:00

20 lines
389 B
INI

[tox]
envlist = py26,py27,py35,py36
[testenv]
deps = -r{toxinidir}/requirements-dev.txt
passenv = HOME SSH_AUTH_SOCK USER
commands =
python -m pytest
[testenv:pre-commit]
basepython = /usr/bin/python3.5
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