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
pull/27461/head
Toshio Kuratomi 7 years ago
parent 0765ceb66d
commit 21564cdb98

@ -451,7 +451,10 @@ def command_sanity_pylint(args, targets):
skip_paths = skip_fd.read().splitlines()
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)
@ -469,6 +472,7 @@ def command_sanity_pylint(args, targets):
'--ignored-modules', '_MovedItems',
'--output-format', 'json',
'--disable', ','.join(sorted(disable)),
'--enable', ','.join(sorted(enable)),
] + paths
env = ansible_environment(args)

@ -0,0 +1 @@
#wildcard-import
Loading…
Cancel
Save