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]
|
[MESSAGES CONTROL]
|
||||||
|
|
||||||
disable=
|
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-few-public-methods,
|
||||||
too-many-arguments,
|
too-many-arguments,
|
||||||
too-many-branches,
|
too-many-branches,
|
||||||
|
|
|
@ -23,9 +23,11 @@ disable=
|
||||||
consider-using-in,
|
consider-using-in,
|
||||||
consider-using-set-comprehension,
|
consider-using-set-comprehension,
|
||||||
consider-using-ternary,
|
consider-using-ternary,
|
||||||
|
cyclic-import, # consistent results require running with --jobs 1 and testing all files
|
||||||
deprecated-lambda,
|
deprecated-lambda,
|
||||||
deprecated-method,
|
deprecated-method,
|
||||||
deprecated-module,
|
deprecated-module,
|
||||||
|
duplicate-code, # consistent results require running with --jobs 1 and testing all files
|
||||||
eval-used,
|
eval-used,
|
||||||
exec-used,
|
exec-used,
|
||||||
expression-not-assigned,
|
expression-not-assigned,
|
||||||
|
|
|
@ -23,9 +23,11 @@ disable=
|
||||||
consider-using-in,
|
consider-using-in,
|
||||||
consider-using-set-comprehension,
|
consider-using-set-comprehension,
|
||||||
consider-using-ternary,
|
consider-using-ternary,
|
||||||
|
cyclic-import, # consistent results require running with --jobs 1 and testing all files
|
||||||
deprecated-lambda,
|
deprecated-lambda,
|
||||||
deprecated-method,
|
deprecated-method,
|
||||||
deprecated-module,
|
deprecated-module,
|
||||||
|
duplicate-code, # consistent results require running with --jobs 1 and testing all files
|
||||||
eval-used,
|
eval-used,
|
||||||
exec-used,
|
exec-used,
|
||||||
expression-not-assigned,
|
expression-not-assigned,
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
[MESSAGES CONTROL]
|
[MESSAGES CONTROL]
|
||||||
|
|
||||||
disable=
|
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-few-public-methods,
|
||||||
too-many-arguments,
|
too-many-arguments,
|
||||||
too-many-branches,
|
too-many-branches,
|
||||||
|
|
Loading…
Add table
Reference in a new issue