
Add tox pep8 and hacking check. Add basic tests starter. Change-Id: I9553606250674e4ae0c5d6aca5d88b7a1fe39977
16 lines
269 B
INI
16 lines
269 B
INI
[tox]
|
|
minversion = 1.6
|
|
skipsdist = True
|
|
envlist = pep8
|
|
|
|
[testenv:pep8]
|
|
deps = hacking
|
|
commands = flake8
|
|
distribute = false
|
|
|
|
[flake8]
|
|
filename=*.py
|
|
ignore = H703
|
|
show-source = true
|
|
exclude = .venv,.git,.tox,dist,doc,*egg,*lib/python*,build,releasenotes
|
|
max-complexity=25 |