pre-commit-hooks/tox.ini
Michał Sochoń ec38740854 Ensure tox gets proper language settings.
If LC_ALL is not passed then the interpreter will assume it is C
(which causes the interpreter to use ASCII). This, in turn, causes
the unicode in various places to trigger a UnicodeDecodeError
exception.

CI workers have that locale set by default.
Some people do not have that locale setting set properly.
2018-03-26 01:21:08 +02:00

30 lines
657 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"
LC_ALL=en_US.UTF-8
commands =
coverage erase
coverage run -m pytest {posargs:tests}
coverage report --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