aboutsummaryrefslogtreecommitdiff
blob: 4bc6bce30b18ae0035645e57b6d54918a4c98cc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[tox]
envlist = py310, py311, py312
[testenv]
# force latest virtualenv/pip
download = true
extras = test
commands =
	pytest --cov {posargs:-v}

# build docs
[testenv:docs]
skip_install = true
extras = doc
commands =
	python setup.py build_docs

# build dist files
[testenv:dist]
skip_install = true
commands =
	python setup.py sdist
	python setup.py bdist_wheel