mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +00:00
Add some features to the pylint sanity check
* Enable specific tests (this lets us disable a group and then enable a particular test inside of it) * Comment out tests in the enable and disable files
This commit is contained in:
@@ -451,7 +451,10 @@ def command_sanity_pylint(args, targets):
|
|||||||
skip_paths = skip_fd.read().splitlines()
|
skip_paths = skip_fd.read().splitlines()
|
||||||
|
|
||||||
with open('test/sanity/pylint/disable.txt', 'r') as disable_fd:
|
with open('test/sanity/pylint/disable.txt', 'r') as disable_fd:
|
||||||
disable = set(disable_fd.read().splitlines())
|
disable = set(c for c in disable_fd.read().splitlines() if not c.strip().startswith('#'))
|
||||||
|
|
||||||
|
with open('test/sanity/pylint/enable.txt', 'r') as enable_fd:
|
||||||
|
enable = set(c for c in enable_fd.read().splitlines() if not c.strip().startswith('#'))
|
||||||
|
|
||||||
skip_paths_set = set(skip_paths)
|
skip_paths_set = set(skip_paths)
|
||||||
|
|
||||||
@@ -469,6 +472,7 @@ def command_sanity_pylint(args, targets):
|
|||||||
'--ignored-modules', '_MovedItems',
|
'--ignored-modules', '_MovedItems',
|
||||||
'--output-format', 'json',
|
'--output-format', 'json',
|
||||||
'--disable', ','.join(sorted(disable)),
|
'--disable', ','.join(sorted(disable)),
|
||||||
|
'--enable', ','.join(sorted(enable)),
|
||||||
] + paths
|
] + paths
|
||||||
|
|
||||||
env = ansible_environment(args)
|
env = ansible_environment(args)
|
||||||
|
|||||||
1
test/sanity/pylint/enable.txt
Normal file
1
test/sanity/pylint/enable.txt
Normal file
@@ -0,0 +1 @@
|
|||||||
|
#wildcard-import
|
||||||
Reference in New Issue
Block a user