forked from PolyJIT/benchbuild
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
50 lines (44 loc) · 882 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]
minversion=3.0.0
skipsdist=True
envlist = py37, py38, py39, py310
[testenv]
deps =
-rrequirements.txt
-rtest-requirements.txt
commands =
coverage run -m pytest benchbuild tests
coverage report -m --skip-covered
[testenv:mypy]
deps =
-rrequirements.txt
mypy
commands =
mypy benchbuild
[testenv:pylint]
deps =
-rrequirements.txt
pylint
commands =
pylint benchbuild
[testenv:release]
deps =
-rrequirements.txt
wheel
twine
commands =
pip3 wheel --no-deps -w {distdir} .
twine upload --skip-existing -r pypi {distdir}/benchbuild*
[testenv:test-release]
deps =
-rrequirements.txt
wheel
twine
commands =
pip3 wheel --no-deps -w {distdir} .
twine upload --skip-existing -r pypitest {distdir}/benchbuild*
[testenv:docs]
usedevelop=True
deps =
-rrequirements.txt
commands = pdoc -c show_type_annotations=True -f -o docs --html benchbuild