From 673563e0bbe0afeaa35c1f0264f384d2d6f6ed66 Mon Sep 17 00:00:00 2001 From: Marti Bolivar Date: Mon, 4 Feb 2019 11:09:53 -0700 Subject: [PATCH] Add another directory to flake8 exclude When running flake8, we should also be ignoring the build directory. Signed-off-by: Marti Bolivar --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 89e2e07..5fb64a7 100644 --- a/tox.ini +++ b/tox.ini @@ -10,8 +10,8 @@ skip_missing_interpreters=true # - E302: expected 2 blank lines, found 1 # - W504: line break after binary operator ignore = E126,E261,E302,W504 -# Don't lint setup.py or the .tox virtualenv directory. -exclude = setup.py,.tox +# Don't lint setup.py, the .tox virtualenv directory, or the build directory +exclude = setup.py,.tox,build [testenv] deps = -rtox_deps.txt