diff options
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,5 +1,5 @@ [tox] -envlist = py26,py27,pypy,py32,py33,py34,docs,pep8,py3pep8 +envlist = py26,py27,pypy,py32,py33,py34,docs,pep8,py3pep8,doc8 [testenv] # If you add a new dep here you probably need to add it in setup.py as well @@ -55,6 +55,10 @@ deps = pep8-naming commands = flake8 . +[testenv:doc8] +deps = doc8 +commands = doc8 README.rst docs/ + [flake8] exclude = .tox,*.egg select = E,W,F,N,I |