diff options
author | ahothan <ahothan@cisco.com> | 2017-07-28 17:08:46 -0700 |
---|---|---|
committer | ahothan <ahothan@cisco.com> | 2017-07-31 12:34:00 -0700 |
commit | 04a7de082bd221eae3c7004f4e0b99dfa4f8be91 (patch) | |
tree | c9fb7beaedc80479772ba24c3b47c85d49c22f76 /tox.ini | |
parent | b8f02ed4e72399840a93aceb02b8c53831bbe68a (diff) |
Initial code drop from Cisco1.0.0
Change-Id: Ie2993886dc8e95c5f73ccdb871add8b96ffcc849
Signed-off-by: ahothan <ahothan@cisco.com>
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 43 |
1 files changed, 43 insertions, 0 deletions
@@ -0,0 +1,43 @@ +[tox] +minversion = 1.6 +envlist = py27,pep8 +skipsdist = True + +[testenv] +usedevelop = True +install_command = pip install -U {opts} {packages} +setenv = + VIRTUAL_ENV={envdir} +deps = -r{toxinidir}/requirements.txt + -r{toxinidir}/test-requirements.txt +changedir=test +commands = py.test -q -s --basetemp={envtmpdir} {posargs} + +[testenv:pep8] +commands = flake8 {toxinidir} + +[testenv:venv] +commands = {posargs} + +[testenv:cover] +commands = python setup.py testr --coverage --testr-args='{posargs}' + +[testenv:docs] +commands = python setup.py build_sphinx + +[flake8] +# H803 skipped on purpose per list discussion. +# E123, E125 skipped as they are invalid PEP-8. +max-line-length = 100 +show-source = True +#E302: expected 2 blank linee +#E303: too many blank lines (2) +#H233: Python 3.x incompatible use of print operator +#H236: Python 3.x incompatible __metaclass__, use six.add_metaclass() +#H302: import only modules. +#H404: multi line docstring should start without a leading new line +#H405: multi line docstring summary not separated with an empty line +#H904: Wrap long lines in parentheses instead of a backslash +ignore = E123,E125,H803,E302,E303,H233,H236,H302,H404,H405,H904 +builtins = _ +exclude=venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build |