-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtox.ini
78 lines (66 loc) · 1.21 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
[tox]
envlist = py37, py38, py39, flake8
[travis]
python =
3.7: py37
3.8: py38
3.9: py39
[testenv]
deps =
mock>=2.0.0
pytest!=3.0.5
coverage
httmock
responses
commands =
coverage run --parallel-mode -m pytest {posargs}
coverage combine
coverage report -m
[testenv:venv]
deps =
.
commands = {posargs}
[testenv:flake8]
basepython = python
deps =
flake8
flake8-docstrings>=0.2.7
flake8-import-order>=0.9
pep8-naming
flake8-colors
commands = flake8 skvalidate --ignore=D301,E302,E402,D103 --max-line-length=120
[testenv:pylint]
basepython = python3
skip_install = true
deps =
pyflakes
pylint
commands =
pylint skvalidate
[testenv:doc8]
basepython = python3
skip_install = true
deps =
sphinx
doc8
commands =
doc8 docs/source/
[testenv:readme]
basepython = python3
deps =
readme_renderer
commands =
python setup.py check -r -s
[testenv:linters]
basepython = python3
skip_install = true
deps =
{[testenv:flake8]deps}
{[testenv:pylint]deps}
{[testenv:doc8]deps}
{[testenv:readme]deps}
commands =
{[testenv:flake8]commands}
{[testenv:pylint]commands}
{[testenv:doc8]commands}
{[testenv:readme]commands}