-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathtox.ini
More file actions
101 lines (89 loc) · 1.65 KB
/
Copy pathtox.ini
File metadata and controls
101 lines (89 loc) · 1.65 KB
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
[tox]
envlist = py310,py311,py312,py313,py314,pypy3,flake8,mypy,isort,coverage
[testenv]
deps =
pytest
setuptools
commands =
pytest {posargs:tests}
[testenv:pypy36]
basepython = pypy3.6
[testenv:coverage]
basepython = python3
deps =
{[testenv]deps}
coverage
commands =
coverage run -m pytest tests {posargs}
coverage report -m --fail-under=100
[testenv:flake8]
basepython = python3
skip_install = true
deps =
flake8
commands =
flake8 src setup.py tests {posargs}
[testenv:mypy]
basepython = python3
skip_install = true
deps =
mypy
tomlkit
types-pyyaml
commands =
mypy src setup.py {posargs}
# not checking tests/ because I don't want strict mode there, and mypy
# ignores my [mypy-tests] strict = false in setup.cfg
[testenv:ty]
skip_install = true
deps =
ty
tomlkit
types-pyyaml
commands =
ty check src {posargs}
[testenv:pyrefly]
skip_install = true
deps =
pyrefly
tomlkit
types-pyyaml
commands =
pyrefly check src {posargs}
[testenv:pyright]
skip_install = true
deps =
pyright
tomlkit
types-pyyaml
commands =
pyright src {posargs}
[testenv:basedpyright]
skip_install = true
deps =
basedpyright
tomlkit
types-pyyaml
commands =
basedpyright src {posargs}
[testenv:isort]
basepython = python3
skip_install = true
deps =
isort
commands =
isort {posargs: -c --diff src}
[testenv:check-manifest]
basepython = python3
skip_install = true
deps =
check-manifest
commands =
check-manifest {posargs}
[testenv:check-python-versions]
basepython = python3
skip_install = true
deps =
check-python-versions
commands =
check-python-versions {posargs}