From: Daan De Meyer Date: Fri, 10 Jan 2025 13:29:58 +0000 (+0100) Subject: test: Don't register machines with machined unless we're in interactive mode X-Git-Tag: v258-rc1~1640^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=84b30442d257102a9a39122f9a537fa48fb0bfda;p=thirdparty%2Fsystemd.git test: Don't register machines with machined unless we're in interactive mode --- diff --git a/test/integration-test-wrapper.py b/test/integration-test-wrapper.py index 1c28cf3776e..94904cfbc4c 100755 --- a/test/integration-test-wrapper.py +++ b/test/integration-test-wrapper.py @@ -516,7 +516,7 @@ def main() -> None: ] ), '--credential', f"journal.storage={'persistent' if sys.stderr.isatty() else args.storage}", - *(['--runtime-build-sources=no'] if not sys.stderr.isatty() else []), + *(['--runtime-build-sources=no', '--register=no'] if not sys.stderr.isatty() else []), 'vm' if args.vm or os.getuid() != 0 or os.getenv('TEST_PREFER_QEMU', '0') == '1' else 'boot', ] # fmt: skip