diff options
author | Yun Huang <yun.huang@windriver.com> | 2018-03-14 21:43:25 +0800 |
---|---|---|
committer | Yun Huang <yun.huang@windriver.com> | 2018-03-14 21:43:25 +0800 |
commit | 7b7d2abafd64f73d49906e2116fec43ccd930246 (patch) | |
tree | 8a88174cf96ab0fae49d18f3aa2227796bf2b791 /newton/tox.ini | |
parent | 3d8a68fb65f118a3d12f8fdf8fd1e39158cfdb1b (diff) |
Fix sonar coverage issue for newton
Change-Id: I14d4b9063528e65e90efa2ea38e155d4b6c2761d
Issue-ID: MULTICLOUD-171
Signed-off-by: Yun Huang <yun.huang@windriver.com>
Diffstat (limited to 'newton/tox.ini')
-rw-r--r-- | newton/tox.ini | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/newton/tox.ini b/newton/tox.ini index 70ca1ae5..4be77268 100644 --- a/newton/tox.ini +++ b/newton/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" --fail-under=30 - coverage xml -i +commands = + coverage run --branch manage.py test newton + 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*" + |