-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtox.ini
47 lines (40 loc) · 1.03 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
[tox]
isolated_build = true
envlist = py36, py37, py38, py39, py310, flake8, pylint, vermin, mkdocs
[gh-actions]
python =
3.10: py310
3.9: py39
3.8: py38, flake8, pylint, vermin, mkdocs
3.7: py37
3.6: py36
[testenv]
whitelist_externals = poetry
commands =
poetry install -v -E toml -E yaml
poetry run pytest --cov=ubimaior
[testenv:flake8]
whitelist_externals = poetry
commands =
poetry install -v -E toml -E yaml
poetry run flake8 --max-line-length=100 ubimaior
[testenv:pylint]
whitelist_externals = poetry
commands =
poetry install -v -E toml -E yaml
poetry run pylint ubimaior
[testenv:vermin]
whitelist_externals = poetry
commands =
poetry install -v -E toml -E yaml
poetry run vermin -vv -t=2.7- -t=3.5- --backport enum ubimaior
[testenv:black]
whitelist_externals = poetry
commands =
poetry install -v -E toml -E yaml
poetry run black --check ubimaior tests
[testenv:mkdocs]
whitelist_externals = poetry
commands =
poetry install -v -E toml -E yaml
poetry run mkdocs build