astara-horizon/tox.ini
Yang Li 38aaae89cf Remove E123 ignore for pep8 check
Change-Id: Ib5ef60311d91e22f9c339d72259731948cd7f387
2016-01-20 17:45:08 +08:00

34 lines
589 B
INI

[tox]
envlist = py27,pep8
[testenv]
distribute = False
setenv = VIRTUAL_ENV={envdir}
deps = -r{toxinidir}/test-requirements.txt
commands = nosetests --with-coverage {posargs}
sitepackages = False
[tox:jenkins]
[testenv:style]
deps = flake8
setuptools_git>=0.4
commands = flake8 astara_horizon setup.py
[testenv:pep8]
deps = {[testenv:style]deps}
commands = {[testenv:style]commands}
[testenv:doc]
deps = Sphinx
commands = sphinx-build doc/source doc/build
[testenv:cover]
setenv = NOSE_WITH_COVERAGE=1
[testenv:venv]
commands = {posargs}
[flake8]
ignore = E133,E226,E241,E242,E731