From 4486fc61dcc253eb0f2663faf24a985e434aa61a Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Fri, 15 Sep 2017 20:42:43 +0200 Subject: [PATCH] Move flake8 config to setup.cfg (#372) [ci skip] --- runtests.py | 2 +- setup.cfg | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/runtests.py b/runtests.py index 45dcbf4e..c2cbe480 100755 --- a/runtests.py +++ b/runtests.py @@ -15,7 +15,7 @@ 'fast': ['tests', '-q'], } -FLAKE8_ARGS = ['rest_framework_jwt', 'tests', '--ignore=E501'] +FLAKE8_ARGS = ['rest_framework_jwt', 'tests'] sys.path.append(os.path.dirname(__file__)) diff --git a/setup.cfg b/setup.cfg index 0a8df87a..cf83789e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,2 +1,5 @@ [wheel] -universal = 1 \ No newline at end of file +universal = 1 + +[flake8] +ignore = E501