-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
tox.ini
103 lines (90 loc) · 2.08 KB
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[tox]
minversion = 3.4.0
skip_missing_interpreters = true
envlist =
{py27, py35, py36, py37, py38}-{unittest},
cover, docs, bandit, build
[testenv]
usedevelop = True
setenv =
VIRTUAL_ENV={envdir}
PYTHONWARNINGS=default::DeprecationWarning
deps = pip >= 19.3.1
install_command =
pip install {opts} {packages}
[testenv:unittest]
deps =
discover
{[testenv]deps}
-r{toxinidir}/devel-requirements.txt
-r{toxinidir}/requirements.txt
commands =
discover -s tests
[testenv:py27-unittest]
deps = {[testenv:unittest]deps}
commands = {[testenv:unittest]commands}
[testenv:py35-unittest]
deps = {[testenv:unittest]deps}
commands = {[testenv:unittest]commands}
[testenv:py36-unittest]
deps = {[testenv:unittest]deps}
commands = {[testenv:unittest]commands}
[testenv:py37-unittest]
deps = {[testenv:unittest]deps}
commands = {[testenv:unittest]commands}
[testenv:py38-unittest]
deps = {[testenv:unittest]deps}
commands = {[testenv:unittest]commands}
[testenv:flake8]
basepython=python3
skip_install = true
deps =
flake8
# flake8-bugbear
# flake8-colors
# flake8-docstrings
flake8-import-order
# flake8-typing-imports
# pep8-naming
commands =
flake8 --config .flake8.ini --count --import-order-style pep8 --application-import-names pysmi pysmi tests {posargs}
[testenv:pylint]
basepython=python3
deps =
pyflakes
pylint
-r{toxinidir}/requirements.txt
commands =
pylint pysmi
[testenv:cover]
basepython=python3
setenv =
{[testenv]setenv}
PYTHON=coverage run --parallel-mode
deps =
{[testenv:unittest]deps}
coverage
discover
commands = coverage erase
coverage run --source pysmi -m unittest discover {posargs}
coverage report --fail-under 50
[testenv:bandit]
basepython=python3
skip_install = true
deps =
bandit
commands =
bandit -r pysmi -c .bandit.yml
[testenv:docs]
basepython=python3
skip_install = true
whitelist_externals = make
commands = make -C docs html
[testenv:build]
basepython=python3
skip_install = true
deps =
wheel
setuptools
commands =
python setup.py -q sdist bdist_wheel