diff options
author | John Snow <jsnow@redhat.com> | 2021-10-19 10:49:10 -0400 |
---|---|---|
committer | John Snow <jsnow@redhat.com> | 2021-11-01 11:54:59 -0400 |
commit | a4bde736295bd0951005d7292b99086825f74f8a (patch) | |
tree | a90f4b0ccbb215f0150458d825539232878c0f9a /tests/qemu-iotests | |
parent | 2d804f55b4f6b4f500ad99567c60631ac47fd860 (diff) | |
download | qemu-a4bde736295bd0951005d7292b99086825f74f8a.zip qemu-a4bde736295bd0951005d7292b99086825f74f8a.tar.gz qemu-a4bde736295bd0951005d7292b99086825f74f8a.tar.bz2 |
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>
Diffstat (limited to 'tests/qemu-iotests')
-rwxr-xr-x | tests/qemu-iotests/297 | 46 |
1 files changed, 24 insertions, 22 deletions
diff --git a/tests/qemu-iotests/297 b/tests/qemu-iotests/297 index 189bcaf..d21673a 100755 --- a/tests/qemu-iotests/297 +++ b/tests/qemu-iotests/297 @@ -61,27 +61,29 @@ def get_test_files() -> List[str]: return list(filter(is_python_file, check_tests)) -def run_pylint( - files: List[str], - env: Optional[Mapping[str, str]] = None, +def run_linter( + tool: str, + args: List[str], + env: Optional[Mapping[str, str]] = None, + suppress_output: bool = False, ) -> None: - - subprocess.run(('python3', '-m', 'pylint', *files), - env=env, check=False) - - -def run_mypy( - files: List[str], - env: Optional[Mapping[str, str]] = None, -) -> None: - p = subprocess.run(('python3', '-m', 'mypy', *files), - env=env, - check=False, - stdout=subprocess.PIPE, - stderr=subprocess.STDOUT, - universal_newlines=True) - - if p.returncode != 0: + """ + Run a python-based linting tool. + + If suppress_output is True, capture stdout/stderr of the child + process and only print that information back to stdout if the child + process's return code was non-zero. + """ + p = subprocess.run( + ('python3', '-m', tool, *args), + env=env, + check=False, + stdout=subprocess.PIPE if suppress_output else None, + stderr=subprocess.STDOUT if suppress_output else None, + universal_newlines=True, + ) + + if suppress_output and p.returncode != 0: print(p.stdout) @@ -100,11 +102,11 @@ def main() -> None: print('=== pylint ===') sys.stdout.flush() - run_pylint(files, env=env) + run_linter('pylint', files, env=env) print('=== mypy ===') sys.stdout.flush() - run_mypy(files, env=env) + run_linter('mypy', files, env=env, suppress_output=True) iotests.script_main(main) |