From 42054d1f20e725d54113e3025223873cb1ba865a Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 28 Jan 2014 15:56:50 +0100 Subject: [PATCH] run_checks: Add some arguments --- run_checks.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/run_checks.py b/run_checks.py index 45ccddca1..44b83c399 100644 --- a/run_checks.py +++ b/run_checks.py @@ -27,8 +27,9 @@ def run(name, args=None): status[name] = None print() -run('pylint') -run('flake8', ['--max-complexity', '10']) +run('pylint', ['--ignore=appdirs.py', '--output-format=colorized', + '--reports=no']) +run('flake8', ['--max-complexity=10', '--exclude=appdirs.py']) print('Exit status values:') for (k, v) in status.items():