From: Jeremy Stanley Date: Sun, 8 Jul 2018 19:31:38 +0000 (+0000) Subject: Include "docs" in default tox envs list X-Git-Tag: 0.0.1~71 X-Git-Url: https://mudpy.org/gitweb?p=mudpy.git;a=commitdiff_plain;h=1ea21b6bd7f3784583213bb28ed1d3b8bc3b29f8 Include "docs" in default tox envs list Encourage regular testing that docs builds aren't broken by generating them by default when tox is run without specific env list. Also remove the doc tree from the flake8 exclusion list as it should no longer contain anything to which that would object. --- diff --git a/tox.ini b/tox.ini index 5b84bb3..edb0362 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ [tox] minversion = 2.0 -envlist = dist, flake8, yamllint +envlist = dist, docs, flake8, yamllint skipsdist = True [testenv] @@ -44,4 +44,4 @@ commands = {posargs} [flake8] show-source = True -exclude=.venv,.git,.tox,doc,*lib/python*,*egg,build +exclude=.venv,.git,.tox,*lib/python*,*egg,build