mirror of
https://github.com/pre-commit/pre-commit-hooks.git
synced 2026-04-05 11:36:54 +00:00
30 lines
702 B
INI
30 lines
702 B
INI
[tox]
|
|
project = pre_commit_hooks
|
|
# These should match the travis env list
|
|
envlist = py27,py35,py36,pypy
|
|
|
|
[testenv]
|
|
deps =
|
|
-rrequirements-dev.txt
|
|
passenv = HOME HOMEPATH PROGRAMDATA
|
|
setenv =
|
|
GIT_AUTHOR_NAME = "test"
|
|
GIT_COMMITTER_NAME = "test"
|
|
GIT_AUTHOR_EMAIL = "test@example.com"
|
|
GIT_COMMITTER_EMAIL = "test@example.com"
|
|
commands =
|
|
coverage erase
|
|
coverage run --source=pre_commit_hooks/ -m pytest -rxs --durations 10 {posargs:tests}
|
|
coverage report --show-missing --fail-under 99
|
|
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
|