Disabled inconsistent pylint checks.
This commit is contained in:
parent
0133757d44
commit
8152d8bc1a
5 changed files with 10 additions and 0 deletions
|
@ -0,0 +1,2 @@
|
|||
bugfixes:
|
||||
- ansible-test - Disabled the ``duplicate-code`` and ``cyclic-import`` checks for the ``pylint`` sanity test due to inconsistent results.
|
|
@ -1,6 +1,8 @@
|
|||
[MESSAGES CONTROL]
|
||||
|
||||
disable=
|
||||
cyclic-import, # consistent results require running with --jobs 1 and testing all files
|
||||
duplicate-code, # consistent results require running with --jobs 1 and testing all files
|
||||
too-few-public-methods,
|
||||
too-many-arguments,
|
||||
too-many-branches,
|
||||
|
|
|
@ -23,9 +23,11 @@ disable=
|
|||
consider-using-in,
|
||||
consider-using-set-comprehension,
|
||||
consider-using-ternary,
|
||||
cyclic-import, # consistent results require running with --jobs 1 and testing all files
|
||||
deprecated-lambda,
|
||||
deprecated-method,
|
||||
deprecated-module,
|
||||
duplicate-code, # consistent results require running with --jobs 1 and testing all files
|
||||
eval-used,
|
||||
exec-used,
|
||||
expression-not-assigned,
|
||||
|
|
|
@ -23,9 +23,11 @@ disable=
|
|||
consider-using-in,
|
||||
consider-using-set-comprehension,
|
||||
consider-using-ternary,
|
||||
cyclic-import, # consistent results require running with --jobs 1 and testing all files
|
||||
deprecated-lambda,
|
||||
deprecated-method,
|
||||
deprecated-module,
|
||||
duplicate-code, # consistent results require running with --jobs 1 and testing all files
|
||||
eval-used,
|
||||
exec-used,
|
||||
expression-not-assigned,
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
[MESSAGES CONTROL]
|
||||
|
||||
disable=
|
||||
cyclic-import, # consistent results require running with --jobs 1 and testing all files
|
||||
duplicate-code, # consistent results require running with --jobs 1 and testing all files
|
||||
too-few-public-methods,
|
||||
too-many-arguments,
|
||||
too-many-branches,
|
||||
|
|
Loading…
Reference in a new issue