Bump versions by x.(y+1).z
[integration/distribution.git] / tox.ini
diff --git a/tox.ini b/tox.ini
index 85f46013a6c35c44e14aafdea4eaf6756084b407..f03810fbe37465b56fadcd2f0ed480807d3963d3 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -1,18 +1,31 @@
 [tox]
 minversion = 1.6.0
-envlist = pep8
+envlist =
+    coala,
+    docs,
+    docs-linkcheck,
+    pep8
 skipsdist = true
 
+[testenv:docs]
+allowlist_externals = echo
+deps = -rdocs/requirements.txt
+commands =
+    sphinx-build -W -b html -n -W -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html
+    echo "Generated docs available in {toxinidir}/docs/_build/html"
+
+[testenv:docs-linkcheck]
+deps = -rdocs/requirements.txt
+commands = sphinx-build -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck
+
 [testenv:pep8]
 deps =
     flake8
-    pep8==1.7.0
 commands = flake8
 
 [flake8]
 show-source = True
 max-line-length = 120
-
 # - Select E121, E123, E126, E226, E241, E242 and E704 which are turned OFF
 #   by default but represent guidelines accepted by us.
 # - Do not select E133 because it is incompatible with E123 which was
@@ -22,3 +35,7 @@ max-line-length = 120
 #   that (select E133 instead of E123) but that should be caught by the
 #   verify job.
 select = E,W
+exclude =
+    .git,
+    .tox,
+    docs/conf.py