From bf7b6d4dc667095bbb7ad1d250e4eb0663e21540 Mon Sep 17 00:00:00 2001 From: Bin Yang Date: Fri, 22 Feb 2019 08:46:53 +0000 Subject: Add OpenStack fcaps module Change-Id: Ie05808a199edf1203ed0c7663031c7065dcb1512 Issue-ID: MULTICLOUD-499 Signed-off-by: Bin Yang --- fcaps/tox.ini | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 fcaps/tox.ini (limited to 'fcaps/tox.ini') diff --git a/fcaps/tox.ini b/fcaps/tox.ini new file mode 100644 index 00000000..7710e46c --- /dev/null +++ b/fcaps/tox.ini @@ -0,0 +1,34 @@ +[tox] +envlist = py27,cov,pylint +skipsdist = true + +[tox:jenkins] +downloadcache = ~/cache/pip + +[flake8] +ignore = E501,E722 +exclude = ./venv-tox,./.tox +max-complexity = 27 + +[testenv] +setenv = + PYTHONPATH = {toxinidir}/../share +deps = + -r{toxinidir}/requirements.txt + -r{toxinidir}/test-requirements.txt +commands = + coverage run --branch manage.py test fcaps + coverage report --omit="./venv-tox/*,./.tox/*,*tests*,*__init__.py,*newton_base*,*common*,*starlingx_base*" --fail-under=30 + +[testenv:pep8] +deps=flake8 +commands=flake8 + +[testenv:cov] +commands = coverage xml --omit="./venv-tox/*,./.tox/*,*tests*,*__init__.py,*newton_base*,*common*, *site-packages*" + +[testenv:pylint] +whitelist_externals = bash +commands = + bash -c "\ + pylint -f parseable --reports=y fcaps | tee pylint.out" -- cgit 1.2.3-korg