mirror of
https://github.com/pre-commit/pre-commit-hooks.git
synced 2026-03-29 10:16:52 +00:00
25 lines
555 B
INI
25 lines
555 B
INI
[tox]
|
|
project = pre_commit_hooks
|
|
# These should match the travis env list
|
|
envlist = py26,py27,py33,py34,pypy,pypy3
|
|
|
|
[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
|
|
pylint {[tox]project} testing tests setup.py
|
|
|
|
[testenv:venv]
|
|
envdir = venv-{[tox]project}
|
|
commands =
|
|
|
|
[flake8]
|
|
max-line-length=131
|
|
|
|
[pep8]
|
|
ignore=E265,E309,E501
|