forked from wzdf1982/DetectSyntax
-
-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathtox.ini
More file actions
32 lines (28 loc) · 487 Bytes
/
tox.ini
File metadata and controls
32 lines (28 loc) · 487 Bytes
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
[tox]
skipsdist=True
envlist =
py39,py310,py311,py312,py313,py314,lint
[testenv]
deps=
pytest
commands=
py.test .
[testenv:documents]
deps=
-rdocs/src/requirements.txt
commands=
mkdocs build --clean --verbose --strict
pyspelling
[testenv:lint]
deps=
flake8
flake8_docstrings
pep8-naming
flake8-mutable
flake8-builtins
commands=
flake8 "{toxinidir}"
[flake8]
ignore=D202,D203,D401,W504,E741
max-line-length=120
exclude=site/*.py,.tox/*