X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=tox.ini;h=595b5a914c9901f8a2249d81690ee0533c493932;hb=03afcaad2415afaa9a7794a682239a8887b6071b;hp=37c4113d12d1f3b894b218ccbbfd735bb48cdcf3;hpb=fe92f84dab8052613b18fbc40dfb12d8bc8721e0;p=osm%2FMON.git diff --git a/tox.ini b/tox.ini index 37c4113..595b5a9 100644 --- a/tox.ini +++ b/tox.ini @@ -24,31 +24,50 @@ # in multiple virtualenvs. This configuration file will run the # test suite on all supported python versions. To use it, "pip install tox" # and then run "tox" from this directory. - [tox] -minversion = 1.6 -envlist = py27 -skipsdist = True +envlist = cover, py3, flake8 + [testenv] usedevelop = True -install_command = pip install -r requirements.txt -U {opts} {packages} -commands = sh tools/pretty_tox.sh '{posargs}' -deps = -r{toxinidir}/test-requirements.txt -whitelist_externals = sh -setenv = - VIRTUAL_ENV={envdir} +install_command = pip install -U {opts} {packages} +setenv = VIRTUAL_ENV={envdir} + PYTHONDONTWRITEBYTECODE = 1 + TESTS_DIR=./osm_mon/tests/unit/ +deps = -r{toxinidir}/requirements.txt + -r{toxinidir}/test-requirements.txt +commands = + coverage erase + +[testenv:cover] +basepython = python3 +deps = nose2 + -r{toxinidir}/requirements.txt + -r{toxinidir}/test-requirements.txt +commands = + coverage erase + nose2 -C --coverage osm_mon --plugin nose2.plugins.junitxml + coverage report --omit='*tests*' + coverage html -d ./cover --omit='*tests*' + coverage xml -o coverage.xml --omit='*tests*' -[testenv:pep8] -commands = flake8 plugins +[testenv:flake8] +basepython = python3 +deps = flake8 + -r{toxinidir}/requirements.txt +commands = + flake8 osm_mon -[pep8] -max-line-length = 80 +[testenv:build] +basepython = python3 +deps = stdeb + setuptools-version-command +commands = python3 setup.py --command-packages=stdeb.command bdist_deb [flake8] # E123, E125 skipped as they are invalid PEP-8. -max-line-length = 80 +max-line-length = 120 show-source = True -ignore = E123,E125,E241 +ignore = E123,E125,E241,W503 builtins = _ -exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build,core/*,devops_stages/*,plugins/CloudWatch/*, plugins/vRealiseOps/*,.rst +exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build,devops_stages/*,.rst