blob: 3a360af28882222bba1e7d3825805545d2cce702 [file] [log] [blame]
Helena McGough95b92b32017-10-01 12:03:53 +01001# 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 McGough95b92b32017-10-01 12:03:53 +010027[tox]
Benjamin Diaz649e6b22019-04-10 17:06:19 -030028envlist = py3, flake8, pylint
Benjamin Diazb7261612018-05-11 18:00:16 -030029toxworkdir={homedir}/.tox
Helena McGough95b92b32017-10-01 12:03:53 +010030
31[testenv]
Benjamin Diazb7261612018-05-11 18:00:16 -030032basepythons = python3
33commands=python3 -m unittest discover -v
34install_command = python3 -m pip install -r requirements.txt -U {opts} {packages}
Helena McGough95b92b32017-10-01 12:03:53 +010035deps = -r{toxinidir}/test-requirements.txt
Helena McGough95b92b32017-10-01 12:03:53 +010036
Benjamin Diaz649e6b22019-04-10 17:06:19 -030037[testenv:pylint]
38basepython = python3
39deps = pylint
beierl730dfd82019-06-24 15:51:33 -040040 -r{toxinidir}/test-requirements.txt
Benjamin Diaz649e6b22019-04-10 17:06:19 -030041commands =
42 pylint -E osm_mon
43
Benjamin Diazb7261612018-05-11 18:00:16 -030044[testenv:flake8]
45basepython = python3
46deps = flake8
47commands =
48 flake8 osm_mon
Helena McGough95b92b32017-10-01 12:03:53 +010049
Benjamin Diazb7261612018-05-11 18:00:16 -030050[testenv:build]
51basepython = python3
52deps = stdeb
53 setuptools-version-command
54commands = python3 setup.py --command-packages=stdeb.command bdist_deb
Helena McGough95b92b32017-10-01 12:03:53 +010055
56[flake8]
57# E123, E125 skipped as they are invalid PEP-8.
Benjamin Diazb7261612018-05-11 18:00:16 -030058max-line-length = 120
Helena McGough95b92b32017-10-01 12:03:53 +010059show-source = True
60ignore = E123,E125,E241
61builtins = _
Helena McGoughbbbc9f62017-11-29 15:12:07 +000062exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build,devops_stages/*,.rst
Benjamin Diazb7261612018-05-11 18:00:16 -030063
64