mirror of https://gitee.com/openkylin/qemu.git
iotests/297: refactor run_[mypy|pylint] as generic execution shim
There's virtually nothing special here anymore; we can combine these into a single, rather generic function. Signed-off-by: John Snow <jsnow@redhat.com> Reviewed-by: Hanna Reitz <hreitz@redhat.com> Message-id: 20211019144918.3159078-8-jsnow@redhat.com Signed-off-by: John Snow <jsnow@redhat.com>
This commit is contained in:
parent
2d804f55b4
commit
a4bde73629
|
@ -61,27 +61,29 @@ def get_test_files() -> List[str]:
|
||||||
return list(filter(is_python_file, check_tests))
|
return list(filter(is_python_file, check_tests))
|
||||||
|
|
||||||
|
|
||||||
def run_pylint(
|
def run_linter(
|
||||||
files: List[str],
|
tool: str,
|
||||||
|
args: List[str],
|
||||||
env: Optional[Mapping[str, str]] = None,
|
env: Optional[Mapping[str, str]] = None,
|
||||||
|
suppress_output: bool = False,
|
||||||
) -> None:
|
) -> None:
|
||||||
|
"""
|
||||||
|
Run a python-based linting tool.
|
||||||
|
|
||||||
subprocess.run(('python3', '-m', 'pylint', *files),
|
If suppress_output is True, capture stdout/stderr of the child
|
||||||
env=env, check=False)
|
process and only print that information back to stdout if the child
|
||||||
|
process's return code was non-zero.
|
||||||
|
"""
|
||||||
def run_mypy(
|
p = subprocess.run(
|
||||||
files: List[str],
|
('python3', '-m', tool, *args),
|
||||||
env: Optional[Mapping[str, str]] = None,
|
|
||||||
) -> None:
|
|
||||||
p = subprocess.run(('python3', '-m', 'mypy', *files),
|
|
||||||
env=env,
|
env=env,
|
||||||
check=False,
|
check=False,
|
||||||
stdout=subprocess.PIPE,
|
stdout=subprocess.PIPE if suppress_output else None,
|
||||||
stderr=subprocess.STDOUT,
|
stderr=subprocess.STDOUT if suppress_output else None,
|
||||||
universal_newlines=True)
|
universal_newlines=True,
|
||||||
|
)
|
||||||
|
|
||||||
if p.returncode != 0:
|
if suppress_output and p.returncode != 0:
|
||||||
print(p.stdout)
|
print(p.stdout)
|
||||||
|
|
||||||
|
|
||||||
|
@ -100,11 +102,11 @@ def main() -> None:
|
||||||
|
|
||||||
print('=== pylint ===')
|
print('=== pylint ===')
|
||||||
sys.stdout.flush()
|
sys.stdout.flush()
|
||||||
run_pylint(files, env=env)
|
run_linter('pylint', files, env=env)
|
||||||
|
|
||||||
print('=== mypy ===')
|
print('=== mypy ===')
|
||||||
sys.stdout.flush()
|
sys.stdout.flush()
|
||||||
run_mypy(files, env=env)
|
run_linter('mypy', files, env=env, suppress_output=True)
|
||||||
|
|
||||||
|
|
||||||
iotests.script_main(main)
|
iotests.script_main(main)
|
||||||
|
|
Loading…
Reference in New Issue