pre-commit-hooks/tox.ini

23 lines
485 B
INI
Raw Normal View History

2014-04-14 13:09:14 +08:00
[tox]
envlist = py37,py38,pypy3,pre-commit
2014-04-14 13:09:14 +08:00
[testenv]
2014-06-06 00:09:21 +08:00
deps = -rrequirements-dev.txt
setenv =
GIT_AUTHOR_NAME = "test"
GIT_COMMITTER_NAME = "test"
GIT_AUTHOR_EMAIL = "test@example.com"
GIT_COMMITTER_EMAIL = "test@example.com"
2014-04-14 13:09:14 +08:00
commands =
coverage erase
coverage run -m pytest {posargs:tests}
coverage report
[testenv:pre-commit]
skip_install = true
deps = pre-commit
commands = pre-commit run --all-files --show-diff-on-failure
2014-04-14 13:09:14 +08:00
2015-06-01 04:51:02 +08:00
[pep8]
ignore=E265,E501,W504