stacktach-quince/tox.ini
Levi Blackstone 4b2cd52264 Add PEP8 check and fix related issues
- 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
2015-05-04 15:35:10 -05:00

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