| Helena McGough | 95b92b3 | 2017-10-01 12:03:53 +0100 | [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. |
| Helena McGough | 95b92b3 | 2017-10-01 12:03:53 +0100 | [diff] [blame] | 27 | [tox] |
| Benjamin Diaz | b726161 | 2018-05-11 18:00:16 -0300 | [diff] [blame] | 28 | envlist = py3 |
| 29 | toxworkdir={homedir}/.tox |
| Helena McGough | 95b92b3 | 2017-10-01 12:03:53 +0100 | [diff] [blame] | 30 | |
| 31 | [testenv] |
| Benjamin Diaz | b726161 | 2018-05-11 18:00:16 -0300 | [diff] [blame] | 32 | basepythons = python3 |
| 33 | commands=python3 -m unittest discover -v |
| 34 | install_command = python3 -m pip install -r requirements.txt -U {opts} {packages} |
| Helena McGough | 95b92b3 | 2017-10-01 12:03:53 +0100 | [diff] [blame] | 35 | deps = -r{toxinidir}/test-requirements.txt |
| Helena McGough | 95b92b3 | 2017-10-01 12:03:53 +0100 | [diff] [blame] | 36 | |
| Benjamin Diaz | b726161 | 2018-05-11 18:00:16 -0300 | [diff] [blame] | 37 | [testenv:flake8] |
| 38 | basepython = python3 |
| 39 | deps = flake8 |
| 40 | commands = |
| 41 | flake8 osm_mon |
| Helena McGough | 95b92b3 | 2017-10-01 12:03:53 +0100 | [diff] [blame] | 42 | |
| Benjamin Diaz | b726161 | 2018-05-11 18:00:16 -0300 | [diff] [blame] | 43 | [testenv:build] |
| 44 | basepython = python3 |
| 45 | deps = stdeb |
| 46 | setuptools-version-command |
| 47 | commands = python3 setup.py --command-packages=stdeb.command bdist_deb |
| Helena McGough | 95b92b3 | 2017-10-01 12:03:53 +0100 | [diff] [blame] | 48 | |
| 49 | [flake8] |
| 50 | # E123, E125 skipped as they are invalid PEP-8. |
| Benjamin Diaz | b726161 | 2018-05-11 18:00:16 -0300 | [diff] [blame] | 51 | max-line-length = 120 |
| Helena McGough | 95b92b3 | 2017-10-01 12:03:53 +0100 | [diff] [blame] | 52 | show-source = True |
| 53 | ignore = E123,E125,E241 |
| 54 | builtins = _ |
| Helena McGough | bbbc9f6 | 2017-11-29 15:12:07 +0000 | [diff] [blame] | 55 | exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build,devops_stages/*,.rst |
| Benjamin Diaz | b726161 | 2018-05-11 18:00:16 -0300 | [diff] [blame] | 56 | |
| 57 | |