Fix pep8 failures

Exclude .eggs directory from testing.
The run-pep8 script now calls "python setup.py sdist" and that
one creates an .eggs directory that should not be tested.

Change-Id: I854be157ed04d5bc9d8c568a37c00298cb4a71bf
This commit is contained in:
Andreas Jaeger 2015-12-07 10:47:37 +01:00
parent 3b02ddb569
commit 1f7bb54dd9
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ commands = python setup.py build_sphinx
[flake8]
show-source = True
exclude = .tox
exclude = .tox,.eggs
ignore = E125,H
select = H231