| Benjamin Diaz | 7f11ecf | 2018-09-14 12:03:38 -0300 | [diff] [blame] | 1 | # Copyright 2017 Intel Research and Development Ireland Limited |
| 2 | # ************************************************************* |
| 3 | |
| 4 | # This file is part of OSM Monitoring module |
| 5 | # All Rights Reserved to Intel Corporation |
| 6 | |
| 7 | # Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 8 | # not use this file except in compliance with the License. You may obtain |
| 9 | # a copy of the License at |
| 10 | |
| 11 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | |
| 13 | # Unless required by applicable law or agreed to in writing, software |
| 14 | # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 15 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 16 | # License for the specific language governing permissions and limitations |
| 17 | # under the License. |
| 18 | |
| 19 | # For those usages not covered by the Apache License, Version 2.0 please |
| 20 | # contact: helena.mcgough@intel.com or adrian.hoban@intel.com |
| 21 | ## |
| 22 | |
| 23 | # Tox (http://tox.testrun.org/) is a tool for running tests |
| 24 | # in multiple virtualenvs. This configuration file will run the |
| 25 | # test suite on all supported python versions. To use it, "pip install tox" |
| 26 | # and then run "tox" from this directory. |
| 27 | [tox] |
| garciaale | 7ce998f | 2020-12-03 18:05:24 -0300 | [diff] [blame] | 28 | envlist = cover, flake8 |
| beierl | e4a298c | 2019-08-29 15:57:14 -0400 | [diff] [blame] | 29 | |
| Benjamin Diaz | 7f11ecf | 2018-09-14 12:03:38 -0300 | [diff] [blame] | 30 | |
| 31 | [testenv] |
| beierl | e4a298c | 2019-08-29 15:57:14 -0400 | [diff] [blame] | 32 | usedevelop = True |
| 33 | install_command = pip install -U {opts} {packages} |
| 34 | setenv = VIRTUAL_ENV={envdir} |
| 35 | PYTHONDONTWRITEBYTECODE = 1 |
| 36 | TESTS_DIR=./osm_policy_module/tests/unit/ |
| 37 | deps = -r{toxinidir}/requirements.txt |
| 38 | -r{toxinidir}/test-requirements.txt |
| 39 | commands = |
| 40 | coverage erase |
| 41 | |
| 42 | [testenv:cover] |
| 43 | basepython = python3 |
| 44 | deps = nose2 |
| 45 | -r{toxinidir}/requirements.txt |
| 46 | -r{toxinidir}/test-requirements.txt |
| 47 | commands = |
| 48 | coverage erase |
| 49 | nose2 -C --coverage osm_policy_module --plugin nose2.plugins.junitxml |
| 50 | coverage report --omit='*tests*' |
| 51 | coverage html -d ./cover --omit='*tests*' |
| 52 | coverage xml -o coverage.xml --omit='*tests*' |
| Benjamin Diaz | 7f11ecf | 2018-09-14 12:03:38 -0300 | [diff] [blame] | 53 | |
| Benjamin Diaz | a13c7e6 | 2019-04-11 14:29:14 -0300 | [diff] [blame] | 54 | [testenv:pylint] |
| 55 | basepython = python3 |
| 56 | deps = pylint |
| beierl | e4a298c | 2019-08-29 15:57:14 -0400 | [diff] [blame] | 57 | -r{toxinidir}/requirements.txt |
| 58 | -r{toxinidir}/test-requirements.txt |
| Benjamin Diaz | a13c7e6 | 2019-04-11 14:29:14 -0300 | [diff] [blame] | 59 | commands = |
| 60 | pylint -E osm_policy_module |
| 61 | |
| Benjamin Diaz | 7f11ecf | 2018-09-14 12:03:38 -0300 | [diff] [blame] | 62 | [testenv:flake8] |
| 63 | basepython = python3 |
| 64 | deps = flake8 |
| beierl | e4a298c | 2019-08-29 15:57:14 -0400 | [diff] [blame] | 65 | -r{toxinidir}/requirements.txt |
| Benjamin Diaz | 7f11ecf | 2018-09-14 12:03:38 -0300 | [diff] [blame] | 66 | commands = |
| 67 | flake8 osm_policy_module |
| 68 | |
| beierl | e4a298c | 2019-08-29 15:57:14 -0400 | [diff] [blame] | 69 | [testenv:build] |
| 70 | basepython = python3 |
| 71 | deps = stdeb |
| 72 | setuptools-version-command |
| 73 | commands = python3 setup.py --command-packages=stdeb.command bdist_deb |
| 74 | |
| Benjamin Diaz | 7f11ecf | 2018-09-14 12:03:38 -0300 | [diff] [blame] | 75 | [flake8] |
| 76 | # E123, E125 skipped as they are invalid PEP-8. |
| 77 | max-line-length = 120 |
| 78 | show-source = True |
| 79 | ignore = E123,E125,E241 |
| 80 | builtins = _ |
| 81 | exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build,devops_stages/*,.rst |