Pylint fix#398
Merged
Merged
Conversation
Removed pylinit check for absolute python version Signed-off-by: Praveen K Pandey <praveen@linux.ibm.com>
Enabled couple of more python version Signed-off-by: Praveen K Pandey <praveen@linux.ibm.com>
Enabled pylint rules in push and pull changes Signed-off-by: Praveen K Pandey <praveen@linux.ibm.com>
avocado-setup.py: - E0606: initialize driver_name=None before for loop - E0602: add pylint disable comment on globals() assignments - E225/E302/E305/E201/E203/E275/E128/E211: fix spacing around operators, blank lines, dict comprehensions, if/continuation indent lib/helper.py: - E231: add missing space after comma in PipMagager.__init__ args - E261: fix inline comment spacing (single to double space) - E303: remove extra blank line before RemoteRunner class lib/pci.py: - E502: remove redundant backslash in list comprehension - E127: fix continuation line indentation - E302: add blank line before is_sriov() - E0602: define NWException class (was used but never defined) lib/hmc.py: - E221: remove multiple spaces before = operator lib/virtual.py: - W292: add missing newline at end of file pci_info.py: - E302: add blank line before create_config_inputs() Gentest.py: - E225: fix missing whitespace around operators - E302: add blank lines before function definitions - E111/E231: fix indentation and missing spaces after commas - W293: remove whitespace from blank lines
avocado-setup.py: - Add module-level '# pylint: disable=E0602' to suppress all undefined-variable warnings for globals set via globals() pattern; these are intentionally set at runtime from config file pci_info.py: - W293: strip trailing whitespace from blank lines - E302/E305: add required blank lines before function/class defs - E122/E128: fix continuation line indentation - E221: remove multiple spaces before = operator lib/virtual.py: - W0611: remove unused 'import platform'
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.