stacktach-shoebox/tox.ini
Levi Blackstone 3b7e69c972 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

Change-Id: I7e9a0203ddf2002c08ac96800fe30c1c46ebba88
2015-05-05 07:43:17 -05:00

24 lines
366 B
INI

[tox]
envlist = py26, py27, pep8
[testenv]
deps =
coverage
nose
mock
notigen
notification_utils
python-dateutil
simport
commands = nosetests -d -v --with-coverage --cover-inclusive --cover-package shoebox []
[testenv:pep8]
commands =
flake8
[flake8]
ignore =
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg
show-source = True