From 0ca4234695585e220d2464a20af307c2bc7f28c5 Mon Sep 17 00:00:00 2001 From: Jeremy Stanley Date: Sun, 8 Jul 2018 19:31:38 +0000 Subject: [PATCH] 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. --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.11.0