diff options
author | David Lord <davidism@gmail.com> | 2022-07-17 11:03:06 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-17 11:03:06 -0700 |
commit | c074cdd06328b724bbe95c060373a57ff2e86b1f (patch) | |
tree | a5da4ae4a2781e567a13a74c2f71a70d9f3a83b2 | |
parent | 28e19c7e743fb9427afad8f258f844cfdeeb3851 (diff) | |
parent | dcb30805364f0f2fb8f08bc6a0f82f25fb9753fa (diff) | |
download | blinker-c074cdd06328b724bbe95c060373a57ff2e86b1f.tar.gz |
Merge pull request #74 from pallets-eco/tox-docs
add docs build to tox
-rw-r--r-- | tox.ini | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -2,8 +2,13 @@ envlist = py3{11,10,9,8,7} pypy3{9,8,7} + docs skip_missing_interpreters = true [testenv] deps = -r tests/requirements.txt commands = pytest -v --tb=short --basetemp={envtmpdir} {posargs:tests} + +[testenv:docs] +deps = -r docs/requirements.txt +commands = sphinx-build -W -b html -d {envtmpdir}/doctrees docs {envtmpdir}/html |