We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf2afc4 commit 3b03bfbCopy full SHA for 3b03bfb
tests/supervisor/test_qemu_instance.py
@@ -121,6 +121,9 @@ async def test_create_qemu_instance_online(mocker):
121
mocker.patch.object(settings, "ENABLE_CONFIDENTIAL_COMPUTING", False)
122
mocker.patch.object(settings, "USE_JAILER", False)
123
124
+ # Patch journal.stream so the output of qemu proecss is shown in the test output
125
+ mocker.patch("aleph.vm.hypervisors.qemu.qemuvm.journal.stream", return_value=None)
126
+
127
if not settings.FAKE_INSTANCE_BASE.exists():
128
pytest.xfail(
129
"Test instance disk {} not setup. run `cd runtimes/instance-rootfs && sudo ./create-debian-12-qemu-disk.sh` ".format(
0 commit comments