blob: b196c13f85dcc8added7894c3ec3afffd0660387 [file] [log] [blame]
[tox]
project = pre_commit_hooks
# These should match the travis env list
envlist = py27,py34,py35,pypy
[testenv]
deps = -rrequirements-dev.txt
passenv = HOME HOMEPATH PROGRAMDATA
commands =
coverage erase
coverage run -m pytest {posargs:tests}
coverage report --show-missing --fail-under 100
pre-commit install -f --install-hooks
pre-commit run --all-files
[testenv:venv]
envdir = venv-{[tox]project}
commands =
[flake8]
max-line-length=131
[pep8]
ignore=E265,E309,E501