-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathtox.ini
59 lines (45 loc) · 1.07 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
[gh-actions]
python =
3.8: py38, docs
3.9: py39, lint
3.10: py310, manifest
[tox]
envlist = lint,py38,py39,py310,manifest,docs,pypi-description,coverage-report
isolated_build = true
[testenv:lint]
basepython = python3.9
skip_install = true
deps = pre-commit
passenv = HOMEPATH # needed on Windows
commands = pre-commit run --all-files
[testenv]
passenv = LC_ALL
extras = tests
commands =
coverage run --parallel -m pytest {posargs}
coverage run --parallel -m doc2dash --version
[testenv:manifest]
basepython = python3.10
deps = check-manifest
skip_install = true
commands = check-manifest
[testenv:pypi-description]
basepython = python3.8
skip_install = true
deps =
twine
pip >= 18.0.0
commands =
pip wheel -w {envtmpdir}/build --no-deps .
twine check {envtmpdir}/build/*
[testenv:docs]
basepython = python3.8
extras = docs
commands = sphinx-build -W -b html -d {envtmpdir}/doctrees docs docs/_build/html
[testenv:coverage-report]
basepython = python3.8
skip_install = true
deps = coverage[toml]
commands =
coverage combine
coverage report