d64a16bf2f
- Add PEP8 section to tox.ini - Add hacking to requirements to enforce OpenStack style requirements - Fix formatting issues flagged by flake8 check - Add copyright notices to all remaining files - Update .gitignore file Change-Id: Iaeee85a78a6625c6ffb711988a77e13e1b5e5dab
20 lines
343 B
INI
20 lines
343 B
INI
[tox]
|
|
envlist = py26,py27,pep8
|
|
|
|
[testenv]
|
|
deps =
|
|
coverage
|
|
nose
|
|
mock
|
|
|
|
commands = nosetests -d -v --with-coverage --cover-inclusive --cover-package klugman []
|
|
|
|
[testenv:pep8]
|
|
commands =
|
|
flake8
|
|
|
|
[flake8]
|
|
ignore =
|
|
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,*db/__init__.py,*db/migrations/versions/*_.py
|
|
show-source = True
|