-
Notifications
You must be signed in to change notification settings - Fork 105
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
Activate pylint-pytest
plugin
#782
Activate pylint-pytest
plugin
#782
Conversation
(not expecting reviews because it's a correction of a misconfiguration that was expected to work earlier) |
I'd like an opportunity to review this, even if it is a correction |
@cidrblock sure, feel free to re-gate as well. Looks like Zuul was drunk. |
This patch is necessary because `pylint` does not autoactivate third- party plugins just because they are installed in the same virtualenv. It seems like this bit of the original configuration got lost over time: the Python distribution package is present in the dependencies and gets installed but `pylint` does not use it. With this change, it becomes used again.
a8d315e
to
f00bb73
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Activate `pylint-pytest` plugin This patch is necessary because pylint does not autoactivate third- party plugins just because they are installed in the same virtualenv. It seems like this bit of the original configuration got lost over time: the Python distribution package is present in the dependencies and gets installed but pylint does not use it. With this change, it becomes used again. Reviewed-by: Bradley A. Thornton <[email protected]> Reviewed-by: None <None>
This patch is necessary because
pylint
does not autoactivate third-party plugins just because they are installed in the same virtualenv.
It seems like this bit of the original configuration got lost over
time: the Python distribution package is present in the dependencies
and gets installed but
pylint
does not use it. With this change, itbecomes used again.