From 7cd3c8724a685de8c1d876119dc76440a313507d Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 28 Jan 2014 18:01:03 +0100 Subject: [PATCH] Add run_checks.py --- run_checks.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 run_checks.py diff --git a/run_checks.py b/run_checks.py new file mode 100644 index 000000000..4d773e724 --- /dev/null +++ b/run_checks.py @@ -0,0 +1,25 @@ +import sys +from pkg_resources import load_entry_point + +status = {} + +def run(name, args=None): + sys.argv = [name, 'qutebrowser'] + if args is not None: + sys.argv += args + print("====== {} ======".format(name)) + try: + load_entry_point(name, 'console_scripts', name)() + except SystemExit as e: + status[name] = e + except Exception as e: + print(e) + status[name] = None + print() + +run('pylint') +run('flake8', ['--max-complexity', '10']) + +print('Exit status values:') +for (k, v) in status.items(): + print(' {} - {}'.format(k, v))