45b156b9fe
Cleaned up all but four of the pep8 violations E501 Line length > 80 characters F401 module imported but unused H302 import only modules (DEPRECATED) H904 Wrap long lines in parentheses instead of a backslash (DEPRECATED) Change-Id: Id24bff6c5f8b8630a9495f49983324342841866f
32 lines
734 B
INI
32 lines
734 B
INI
[tox]
|
|
envlist = py27,pep8
|
|
minversion = 1.6
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
usedevelop = True
|
|
install_command = pip install -U {opts} {packages}
|
|
setenv =
|
|
VIRTUAL_ENV={envdir}
|
|
DISCOVER_DIRECTORY=tests
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
whitelist_externals = bash
|
|
|
|
[testenv:pep8]
|
|
commands = flake8
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[flake8]
|
|
max-line-length = 120
|
|
# TODO: ignored checks should be enabled in the future
|
|
# E501 Line length > 80 characters
|
|
# F401 module imported but unused
|
|
# H302 import only modules
|
|
# H904 Wrap long lines in parentheses instead of a backslash (DEPRECATED)
|
|
ignore = E501, F401, H302, H904,
|
|
show-source = True
|
|
exclude=.venv,.git,.tox,dist,*egg,build
|