-
Notifications
You must be signed in to change notification settings - Fork 1
/
tox.ini
73 lines (60 loc) · 1.25 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
[tox]
envlist = py37,py38,py39,py310,311,pyright,black,docs
skipsdist = True
skip_missing_interpreters = True
[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
3.11: py311, black, pyright, pycodestyle
[pytest]
addopts = --show-capture=log --log-cli-level=error
[base]
deps =
-r requirements.txt
-r test-requirements.txt
module = alise
[testenv]
deps = {[base]deps}
commands = pytest
[testenv:py311]
deps =
{[base]deps}
coverage-badge
commands =
pytest --cov={[base]module} --cov-report=term-missing:skip-covered
coverage-badge -f -o coverage.svg
[testenv:report]
deps =
{[base]deps}
coverage
skip_install = true
commands =
pytest -v --cov={[base]module} --cov-append --cov-report=term-missing
coverage report
coverage html
[testenv:pylint]
deps =
{[base]deps}
pylint
commands = pylint --exit-zero ./{[base]module}
[testenv:black]
deps = black
commands = black -l 100 --check --diff ./{[base]module}
[testenv:pyright]
deps =
{[base]deps}
pyright
commands = pyright ./{[base]module}
[testenv:pycodestyle]
deps =
{[base]deps}
pycodestyle
commands = pycodestyle ./{[base]module}
[testenv:docs]
deps =
-r requirements.txt
-r doc/source/requirements.txt
commands = sphinx-build doc/source doc/build