From 3036d9a27d816ae5086271ba0984750ddc17c83c Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Wed, 3 Apr 2019 18:10:40 +0200 Subject: [PATCH] pep8 checker: do not recurse into .eggs/ we do not want to test setuptools_scm for pep8 issues. --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index ef33a9b..af46bf5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -24,7 +24,7 @@ upload-dir = docs/_build/html [tool:pytest] DJANGO_SETTINGS_MODULE = nsupdate.settings.dev pep8maxlinelength = 120 -norecursedirs = .git +norecursedirs = .git .eggs pep8ignore = *.py E124 # closing bracket does not match visual indentation (behaves strange!?) *.py E125 # continuation line does not distinguish itself from next logical line (difficult to avoid!)