34b0020937
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
21 lines
314 B
INI
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
|