Disabled inconsistent pylint checks.

This commit is contained in:
Matt Clay 2020-06-17 09:22:41 -07:00
parent 0133757d44
commit 8152d8bc1a
5 changed files with 10 additions and 0 deletions

View file

@ -0,0 +1,2 @@
bugfixes:
- ansible-test - Disabled the ``duplicate-code`` and ``cyclic-import`` checks for the ``pylint`` sanity test due to inconsistent results.

View file

@ -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,

View file

@ -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,

View file

@ -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,

View file

@ -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,