Files
aqtinstall/tox.ini
Hiroshi Miura 2c6c8ed52e tox: use python3 not specific version
Signed-off-by: Hiroshi Miura <miurahr@linux.com>
2019-11-10 16:28:30 +09:00

31 lines
525 B
INI

[tox]
envlist = check, docs
[testenv]
basepython = python3
[flake8]
ignore =
[testenv:check]
deps =
docutils
check-manifest
flake8
readme-renderer
pygments
isort
skip_install = true
commands =
check-manifest {toxinidir}
flake8 aqt tests setup.py
isort --verbose --check-only --diff --recursive aqt tests setup.py
[testenv:docs]
deps =
-r{toxinidir}/docs/requirements.txt
commands =
sphinx-build {posargs:-E} -b html docs dist/docs
sphinx-build -b linkcheck docs dist/docs