[stable-2.14] ansible-test - Improve pylint command consistency. (#78896)

* ansible-test - Improve pylint command consistency.

Co-authored-by: Sviatoslav Sydorenko <wk.cvs.github@sydorenko.org.ua>
(cherry picked from commit bc274f5)

Co-authored-by: Matt Clay <matt@mystile.com>
pull/79453/head
Matt Clay 2 years ago
parent 33717f3596
commit 713f5c5ae8

@ -0,0 +1,2 @@
minor_changes:
- ansible-test - Improve consistency of executed ``pylint`` commands by making the plugins ordered.

@ -226,7 +226,7 @@ class PylintTest(SanitySingleVersion):
'--max-complexity', '20',
'--rcfile', rcfile,
'--output-format', 'json',
'--load-plugins', ','.join(load_plugins),
'--load-plugins', ','.join(sorted(load_plugins)),
] + paths
if data_context().content.collection:

Loading…
Cancel
Save