-
Notifications
You must be signed in to change notification settings - Fork 278
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Crash when running pylint with pylint version >= 2.0 #367
Comments
Jean-Daniel
changed the title
Crash when running pylint
Crash when running pylint with pylint version >= 2.0
Jul 18, 2018
@kmmbvnr can you please take a look? |
Closed
In the mean time I'm using following monkey patch: from django_jenkins.tasks import run_pylint
class Lint:
class Run(run_pylint.lint.Run):
def __init__(self, *args, **kwargs):
super().__init__(*args, do_exit=kwargs.pop("exit"), **kwargs)
run_pylint.lint = Lint |
@kmmbvnr is there anything we can do to progress this PR? 😃 |
The same problem for django-jenkins 0.110.0 and pylint 2.4.4 |
Pylint < 2.0 is also not avaible for Python 3.7, so this is really becoming a problem :( |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
recent pylint version don't support the exit keyword (and uses do_exit instead)
The text was updated successfully, but these errors were encountered: