Move docs linting to pep8

pep8 is our linting target, move linting runs to it.

Change-Id: I68f619f21b3df4e73bdb206754bf4449464007bb
This commit is contained in:
Andreas Jaeger 2020-02-04 11:19:33 +01:00
parent 3e241f33da
commit 88a34966d7
1 changed files with 4 additions and 3 deletions

View File

@ -13,14 +13,15 @@ deps =
-r{toxinidir}/requirements.txt
commands =
stestr run --slowest {posargs}
sphinx-build -b doctest doc/source doc/build
doc8 --ignore-path "doc/source/history.rst" doc/source
[testenv:debug]
commands = oslo_debug_helper {posargs}
[testenv:pep8]
commands = flake8
commands =
flake8
sphinx-build -b doctest doc/source doc/build
doc8 --ignore-path "doc/source/history.rst" doc/source
[testenv:venv]
commands = {posargs}