File size: 260 Bytes
065fee7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
[tox]
envlist =
py{38, 39, 310, 311, 312}
pypy3
docs
isolated_build = True
[testenv]
commands = python -m unittest {posargs}
[testenv:docs]
base_path = py312
deps = -rdoc/requirements.txt
commands = sphinx-build -aWEnqb html doc/source doc/build
|