-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
tox.ini
50 lines (43 loc) · 961 Bytes
/
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
[tox]
envlist =
py37,py38,py39,py310,py311,py312,py313,pypy3,flake8
[testenv]
passenv =
LANG
LC_CTYPE
LC_ALL
MSYSTEM
extras = test
commands =
pytest {posargs}
[testenv:coverage]
deps =
coverage
commands =
coverage run -m pytest
coverage report -m --fail-under=100
[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}
[testenv:flake8]
basepython = python3
skip_install = true
deps = flake8
commands = flake8 {posargs:check_manifest.py setup.py tests.py}
[testenv:mypy]
basepython = python3
skip_install = true
deps = mypy
commands = mypy {posargs:check_manifest.py}
[testenv:isort]
basepython = python3
skip_install = true
deps = isort
commands = isort {posargs: -c check_manifest.py setup.py tests.py}