From 6aaff2850ff014c57ecfeb50da8377dd5593eb0c Mon Sep 17 00:00:00 2001 From: Matt Love Date: Mon, 8 Jul 2019 02:00:52 -0700 Subject: [PATCH] Add more CI debugs --- manage.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/manage.py b/manage.py index 9fb2c2c..34bcd94 100755 --- a/manage.py +++ b/manage.py @@ -51,8 +51,11 @@ def pylint_check(num_only, create_badge, errors): import anybadge from pylint import epylint - click.echo("Current directory: " + Path.cwd().resolve()) - click.echo("Pylint Version: " + epylint.py_run("--version", return_std=True)) + pylint_ver = epylint.py_run("hyperglass --version", return_std=True)[ + 0 + ].getvalue() + click.echo("Current directory: " + str(Path.cwd().resolve())) + click.echo("Pylint Version: " + pylint_ver) pylint_stdout, pylint_stderr = epylint.py_run( "hyperglass --verbose --rcfile=.pylintrc", return_std=True )