![Levi Blackstone](/assets/img/avatar_default.png)
- 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 - Fix an unused variable bug - Fix a mutable default argument bug Change-Id: I711efd8055f98e4ffc0bef706f25c6a335409aaa
20 lines
342 B
INI
20 lines
342 B
INI
[tox]
|
|
envlist = py26,py27,pep8
|
|
|
|
[testenv]
|
|
deps =
|
|
coverage
|
|
nose
|
|
mock
|
|
|
|
commands = nosetests -d -v --with-coverage --cover-inclusive --cover-package quince []
|
|
|
|
[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
|