Move tests.pycodestyle.cfg to setup.cfg

This makes manual pycodestyle calls pick up our project config
This commit is contained in:
Cole Robinson 2019-01-26 17:56:23 -05:00
parent 90603cdc6e
commit 8502b84dbd
2 changed files with 1 additions and 1 deletions

View File

@ -612,7 +612,7 @@ class CheckPylint(distutils.core.Command):
print("running pycodestyle")
style_guide = pycodestyle.StyleGuide(
config_file='tests/pycodestyle.cfg',
config_file='setup.cfg',
paths=files
)
report = style_guide.check_files()