1
0
mirror of https://github.com/systemd/systemd.git synced 2025-03-10 16:58:28 +03:00

test: Fix typing errors in integration-test-wrapper.py

(cherry picked from commit ceca7c500563c59b70f43887e4593203a5de2052)
This commit is contained in:
Daan De Meyer 2024-11-23 13:01:00 +01:00 committed by Luca Boccassi
parent a23279a55f
commit 7c5fc202a0

View File

@ -32,7 +32,7 @@ ExecStart=false
"""
def main():
def main() -> None:
parser = argparse.ArgumentParser(description=__doc__)
parser.add_argument('--mkosi', required=True)
parser.add_argument('--meson-source-dir', required=True, type=Path)
@ -184,7 +184,8 @@ def main():
# On Debian/Ubuntu we get a lot of random QEMU crashes. Retry once, and then skip if it fails again.
if args.vm and result.returncode == 247 and args.exit_code != 247:
journal_file.unlink(missing_ok=True)
if journal_file:
journal_file.unlink(missing_ok=True)
result = subprocess.run(cmd)
if args.vm and result.returncode == 247 and args.exit_code != 247:
print(