murano-plugin-networking-sfc/tox.ini
Alexander Saprykin bdb2a39be1 Implement Networking sfc plugin for Murano
Python plugin for Murano provides low level API
for Networking SFC functions in Neutron.

Change-Id: Ifd64f0c8bd3b707e03cdd08b2c3cba59caa689c1
2016-07-06 15:20:27 +02:00

28 lines
500 B
INI

[tox]
minversion = 2.3.1
skipsdist = True
envlist = py35,py34,py27,pep8
[testenv]
usedevelop=True
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands =
py.test {posargs:murano_plugin_networking_sfc/tests}
[testenv:docs]
commands = python setup.py build_sphinx
[testenv:pep8]
deps = hacking>=0.11.0
commands =
flake8 {posargs:murano_plugin_networking_sfc}
[testenv:venv]
commands = {posargs}
[flake8]
show-pep8 = True
show-source = True
count = True