You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
398 B
22 lines
398 B
[tox] |
|
minversion = 2.0 |
|
skipsdist = True |
|
envlist = docs,linters |
|
|
|
[testenv] |
|
basepython = python3 |
|
setenv = VIRTUAL_ENV={envdir} |
|
passenv = *_proxy *_PROXY ZUUL_* |
|
|
|
[testenv:linters] |
|
deps = |
|
-r{toxinidir}/test-requirements.txt |
|
commands = |
|
doc8 doc/source |
|
|
|
[testenv:docs] |
|
deps = |
|
-r{toxinidir}/test-requirements.txt |
|
commands = |
|
sphinx-build -W -b html -d doc/build/doctrees doc/source doc/build/html |
|
|
|
|