dumb-init/tox.ini
2015-09-29 10:43:45 -07:00

19 lines
333 B
INI

[tox]
envlist = py26,py27,py34
[testenv]
deps = -r{toxinidir}/requirements-dev.txt
commands =
python -m pytest
pre-commit run --all-files
[testenv:pre-commit]
commands = pre-commit {posargs}
[flake8]
max-line-length = 119
[pep8]
# autopep8 will rewrite lines to be shorter, even though we raised the length
ignore = E501