From 88a34966d74ace7143376b7bed9b72d6a8e19c93 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Tue, 4 Feb 2020 11:19:33 +0100 Subject: [PATCH] Move docs linting to pep8 pep8 is our linting target, move linting runs to it. Change-Id: I68f619f21b3df4e73bdb206754bf4449464007bb --- tox.ini | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tox.ini b/tox.ini index 81d0b1c..1bb9ffb 100644 --- a/tox.ini +++ b/tox.ini @@ -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}