diff options
author | Yun Huang <yun.huang@windriver.com> | 2018-03-14 15:59:42 +0800 |
---|---|---|
committer | Yun Huang <yun.huang@windriver.com> | 2018-03-14 15:59:42 +0800 |
commit | 3d8a68fb65f118a3d12f8fdf8fd1e39158cfdb1b (patch) | |
tree | f4465cc1b305f8523e874b2c6e43d13614a2e050 /ocata/tox.ini | |
parent | 428c35e6c074be56bd22dc42ba9c4e828564f674 (diff) |
Fix sonar coverage issue for ocata
Change-Id: I716fb55a0da6bced6053084a18c2e2297e6708ec
Issue-ID: MULTICLOUD-171
Signed-off-by: Yun Huang <yun.huang@windriver.com>
Diffstat (limited to 'ocata/tox.ini')
-rw-r--r-- | ocata/tox.ini | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/ocata/tox.ini b/ocata/tox.ini index 671a4f1d..be63b80f 100644 --- a/ocata/tox.ini +++ b/ocata/tox.ini @@ -1,15 +1,27 @@ [tox] -envlist = py27,py35 +envlist = py27,py35,cov 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 commands = - coverage run --branch manage.py test - coverage report --omit=".tox/*,*tests*,*__init__.py,*newton*" --fail-under=30 - coverage xml -i + coverage run --branch manage.py test ocata + coverage report --omit="./venv-tox/*,./.tox/*,*tests*,*__init__.py,*newton_base*,*common*" --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*" + |