blob: af61a3580845b1855be4ea6b62fbdbea82abb753 [file] [log] [blame]
Benjamin Diaz7f11ecf2018-09-14 12:03:38 -03001# 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]
Benjamin Diaza13c7e62019-04-11 14:29:14 -030028envlist = py3, flake8, pylint
Benjamin Diaz7f11ecf2018-09-14 12:03:38 -030029toxworkdir={homedir}/.tox
30
31[testenv]
32basepythons = python3
33commands=python3 -m unittest discover -v
34install_command = python3 -m pip install -r requirements.txt -U {opts} {packages}
35deps = -r{toxinidir}/test-requirements.txt
36
Benjamin Diaza13c7e62019-04-11 14:29:14 -030037[testenv:pylint]
38basepython = python3
39deps = pylint
40commands =
41 pylint -E osm_policy_module
42
Benjamin Diaz7f11ecf2018-09-14 12:03:38 -030043[testenv:flake8]
44basepython = python3
45deps = flake8
46commands =
47 flake8 osm_policy_module
48
Benjamin Diaz7f11ecf2018-09-14 12:03:38 -030049[flake8]
50# E123, E125 skipped as they are invalid PEP-8.
51max-line-length = 120
52show-source = True
53ignore = E123,E125,E241
54builtins = _
55exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build,devops_stages/*,.rst
56
Benjamin Diazd0fea7e2018-09-26 20:12:58 -030057[testenv:build]
58basepython = python3
59deps = stdeb
60 setuptools-version-command
61commands = python3 setup.py --command-packages=stdeb.command bdist_deb