Add another directory to flake8 exclude

When running flake8, we should also be ignoring the build directory.

Signed-off-by: Marti Bolivar <marti@foundries.io>
This commit is contained in:
Marti Bolivar 2019-02-04 11:09:53 -07:00 committed by Carles Cufí
parent 80d5ab109f
commit 673563e0bb
1 changed files with 2 additions and 2 deletions

View File

@ -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