ansible-test - Improve pylint command consistency. (#78896)

* ansible-test - Improve pylint command consistency.

Co-authored-by: Sviatoslav Sydorenko <wk.cvs.github@sydorenko.org.ua>
pull/78927/head
Matt Clay 2 years ago committed by GitHub
parent 6e949d8f5d
commit bc274f57f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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