blob: 3020bc0115d7089c93d3b846a8a3a711c2a07baa [file] [log] [blame]
[tox]
# These should match the travis env list
envlist = py27,py36,py37,pypy3
[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 -m pytest {posargs:tests}
coverage report --fail-under 100
pre-commit install -f --install-hooks
pre-commit run --all-files
[pep8]
ignore=E265,E501,W504