Skip to content
Snippets Groups Projects
Commit 454e8889 authored by Mark Goddard's avatar Mark Goddard
Browse files

Add doc8 for documentation style checking, fix the one issue found

parent 501e35da
No related branches found
No related tags found
No related merge requests found
...@@ -369,7 +369,7 @@ To deploy the overcloud services in containers:: ...@@ -369,7 +369,7 @@ To deploy the overcloud services in containers::
(kayobe-venv) $ kayobe overcloud service deploy (kayobe-venv) $ kayobe overcloud service deploy
Once this command has completed the overcloud nodes should have OpenStack Once this command has completed the overcloud nodes should have OpenStack
services running in Docker containers. services running in Docker containers.
Interacting with the Control Plane Interacting with the Control Plane
---------------------------------- ----------------------------------
......
...@@ -5,5 +5,6 @@ ...@@ -5,5 +5,6 @@
hacking>=0.12.0,<0.13 # Apache-2.0 hacking>=0.12.0,<0.13 # Apache-2.0
coverage>=4.0 # Apache-2.0 coverage>=4.0 # Apache-2.0
doc8 # Apache-2.0
sphinx>=1.5.1 # BSD sphinx>=1.5.1 # BSD
oslotest>=1.10.0 # Apache-2.0 oslotest>=1.10.0 # Apache-2.0
...@@ -14,7 +14,10 @@ deps = -r{toxinidir}/test-requirements.txt ...@@ -14,7 +14,10 @@ deps = -r{toxinidir}/test-requirements.txt
commands = unit2 discover {posargs} commands = unit2 discover {posargs}
[testenv:pep8] [testenv:pep8]
commands = flake8 {posargs} commands =
flake8 {posargs}
# Check the *.rst files
doc8 README.rst CONTRIBUTING.rst doc/source --ignore D001
[testenv:venv] [testenv:venv]
commands = {posargs} commands = {posargs}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment