| 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. |
| 27 | |
| 28 | [tox] |
| 29 | minversion = 1.6 |
| 30 | envlist = py27 |
| 31 | skipsdist = True |
| 32 | |
| 33 | [testenv] |
| 34 | usedevelop = True |
| 35 | install_command = pip install -r requirements.txt -U {opts} {packages} |
| 36 | commands = sh tools/pretty_tox.sh '{posargs}' |
| 37 | deps = -r{toxinidir}/test-requirements.txt |
| 38 | whitelist_externals = sh |
| 39 | setenv = |
| 40 | VIRTUAL_ENV={envdir} |
| 41 | |
| 42 | [testenv:pep8] |
| 43 | commands = flake8 test |
| 44 | |
| 45 | [testenv:venv] |
| 46 | commands = {posargs} |
| 47 | |
| 48 | [testenv:cover] |
| 49 | commands = python setup.py test --coverage |
| 50 | |
| 51 | [pep8] |
| 52 | max-line-length = 80 |
| 53 | |
| 54 | [flake8] |
| 55 | # E123, E125 skipped as they are invalid PEP-8. |
| 56 | max-line-length = 80 |
| 57 | show-source = True |
| 58 | ignore = E123,E125,E241 |
| 59 | builtins = _ |
| 60 | exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build,core/*,devops_stages/*,plugins/CloudWatch/*, plugins/vRealiseOps/*,.rst |