jeepyb/tox.ini
James E. Blair 5257eb0345 Ignore E125 and H flake8 violations.
Change-Id: Ib0d2c8c07abca53f3fdcd0734d571d1f35b41214
2013-12-03 10:19:04 -08:00

23 lines
378 B
INI

[tox]
envlist = pep8
[testenv]
setenv = VIRTUAL_ENV={envdir}
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
[testenv:pep8]
commands = flake8
[testenv:pyflakes]
commands = flake8
[testenv:venv]
commands = {posargs}
[flake8]
# E125 and H are intentionally ignored
ignore = E125,H
show-source = True
exclude = .venv,.tox,dist,doc,build,*.egg