From 311aa088395c92420a4b2d82ba6030fb91e4b08d Mon Sep 17 00:00:00 2001 From: "Jay S. Bryant" Date: Fri, 11 May 2018 14:16:08 -0500 Subject: [PATCH] Fix pep8 warnings for build directory Pep8 was producing warnings about files in the doc/build directory. These warning are not necessary. This change adds --ignore-path for those things that do not need to be verified by pep8/doc8 . Change-Id: Icb83d5d7e87ea75e3296e33e0e726e2374948f57 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 5b0b7c8..e890eba 100644 --- a/tox.ini +++ b/tox.ini @@ -15,7 +15,7 @@ deps = commands = {posargs} [testenv:pep8] -commands = doc8 doc +commands = doc8 --ignore-path .tox --ignore-path *.egg-info --ignore-path doc/build --ignore-path .eggs/*/EGG-INFO/*.txt doc [testenv:docs] commands = sphinx-build -b html -W doc/source doc/build/html