forked from marcofavorito/python-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
152 lines (131 loc) · 3.59 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
[tox]
isolated_build = True
envlist = bandit, safety, check-copyright, black-check, isort-check, vulture, flake8, mypy, pylint, py3.10, py3.9, py3.8, docs
[tox:.package]
# note tox will use the same python version as under what tox is installed to package
# so unless this is python 3 you can require a given python version for the packaging
# environment via the basepython key
basepython = python3
[testenv]
setenv =
PYTHONPATH = {toxinidir}
deps =
pytest>=7.1.1,<7.2.0
pytest-cov>=3.0.0,<3.1.0
pytest-randomly>=3.11.0,<3.12.0
hypothesis>=6.41.0,<6.42.0
; Other test dependencies
; ...
; Main dependencies
; TODO
commands =
pytest --basetemp={envtmpdir} --doctest-modules \
python_project_template tests/ \
--cov=python_project_template \
--cov-report=xml \
--cov-report=html \
--cov-report=term
[testenv:py3.8]
basepython = python3.8
[testenv:py3.9]
basepython = python3.9
[testenv:flake8]
skip_install = True
deps =
flake8>=4.0.1,<4.1.0
flake8-bugbear>=22.3.23,<22.4.0
flake8-docstrings>=1.6.0,<1.8.0
flake8-eradicate>=1.2.0,<1.3.0
flake8-isort>=4.1.1,<4.2.0
pydocstyle>=6.1.1,<6.2.0
commands =
flake8 python_project_template tests scripts
[testenv:mypy]
skip_install = True
deps =
mypy>=0.931,<0.940
commands =
mypy python_project_template tests scripts
[testenv:pylint]
skipdist = True
deps =
pylint>=2.13.5,<2.14.0
pytest>=7.1.1,<7.2.0
hypothesis>=6.41.0,<6.42.0
commands = pylint python_project_template tests scripts
[testenv:black]
skip_install = True
deps = black>=22.3.0,<22.4.0
commands = black python_project_template tests scripts
[testenv:black-check]
skip_install = True
deps = black>=22.3.0,<22.4.0
commands = black python_project_template tests scripts --check --verbose
[testenv:isort]
skip_install = True
deps = isort>=5.10.1,<5.11.0
commands = isort python_project_template tests scripts
[testenv:isort-check]
skip_install = True
deps = isort>=5.10.1,<5.11.0
commands = isort --check-only python_project_template tests scripts
[testenv:bandit]
skipsdist = True
skip_install = True
deps = bandit>=1.7.2,<1.8.0
commands = bandit python_project_template tests scripts
[testenv:safety]
skipsdist = True
skip_install = True
deps = safety>=1.10.3,<1.11.0
commands = safety
[testenv:vulture]
skipsdist = True
skip_install = True
deps = vulture>=2.3,<2.4
commands = vulture python_project_template scripts/whitelist.py
[testenv:darglint]
skipsdist = True
skip_install = True
deps = darglint>=1.8.1,<1.9.0
commands = darglint python_project_template
[testenv:docs]
skip_install = True
deps =
mkdocs>=1.3.0
mkdocs-material>=8.2.8,<8.3.0
mknotebooks>=0.7.1,<0.8.0
markdown-include>=0.6.0,<0.7.0
pymdown-extensions>=9.3,<9.4
markdown>=3.3.6,<3.4.0
mkdocstrings>=0.18.0,<0.19.0
mkdocs-autorefs>=0.4.1,<0.5.0
commands =
mkdocs build --clean
[testenv:docs-serve]
skip_install = True
deps =
mkdocs>=1.3.0
mkdocs-material>=8.2.8,<8.3.0
mknotebooks>=0.7.1,<0.8.0
markdown-include>=0.6.0,<0.7.0
pymdown-extensions>=9.3,<9.4
markdown>=3.3.6,<3.4.0
mkdocstrings>=0.18.0,<0.19.0
mkdocs-autorefs>=0.4.1,<0.5.0
commands =
mkdocs build --clean
python -c 'print("###### Starting local server. Press Control+C to stop server ######")'
mkdocs serve
[testenv:check-copyright]
skip_install = True
deps =
commands = python3 scripts/check_copyright.py
[testenv:spell-check]
skip_install = True
deps =
commands = {toxinidir}/scripts/spell-check.sh
[testenv:spell-check-report]
skip_install = True
deps =
commands = {toxinidir}/scripts/spell-check.sh --only-check