Ignore node_modules in flake8

Currently if the zuul-web stuff is installed 'tox -e pep8' fails with
findings in node_modules. As this is external installed stuff we don't
want to check this.

Change-Id: Ib21d2eed65a1a8489e2c2a3d56edc1c18326b076
This commit is contained in:
Tobias Henkel 2018-03-16 10:20:58 +01:00
parent cb4b10f517
commit bba6f86689
No known key found for this signature in database
GPG Key ID: 03750DEC158E5FA2
1 changed files with 1 additions and 1 deletions

View File

@ -58,4 +58,4 @@ commands = python setup.py test --slowest --testr-args='--concurrency=1 {posargs
# please don't submit patches that solely correct them or enable them.
ignore = E124,E125,E129,E402,E741,H,W503
show-source = True
exclude = .venv,.tox,dist,doc,build,*.egg
exclude = .venv,.tox,dist,doc,build,*.egg,node_modules