system-config/tox.ini
Monty Taylor 34b0020937 Remove the now vestigal pyflakes tox env
The previous patch removes anything that runs the pyflakes env. This
patch removes the env itself becaus it's now not used.

Change-Id: I89d1f6669fc0b95d2944318504e15bd2101e8bce
2013-09-23 18:29:32 +00:00

21 lines
314 B
INI

[tox]
minversion = 1.6
envlist = pep8
skipsdist = True
[testenv]
usedevelop = True
install_command = pip install {opts} {packages}
deps = -r{toxinidir}/test-requirements.txt
[testenv:pep8]
commands = flake8
[testenv:venv]
commands = {posargs}
[flake8]
show-source = True
exclude = .tox,modules
ignore = E125,H