-
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathtox.ini
More file actions
33 lines (29 loc) · 565 Bytes
/
tox.ini
File metadata and controls
33 lines (29 loc) · 565 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
33
[tox]
isolated_build = true
skipsdist=True
envlist =
py37,py38,py39,py310,py311,lint
[testenv]
deps=
pytest
commands=
py.test .
[testenv:documents]
deps=
-rdocs/src/requirements.txt
commands=
"{envpython}" -m 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,N818,A005
max-line-length=120
exclude=site/*.py,.tox/*,lib/coloraide/*,lib/coloraide_extras