From a97e539fc453f16bbd4db94250952e83f69c9ecd Mon Sep 17 00:00:00 2001 From: Nikita Kalyazin Date: Thu, 27 Mar 2025 10:45:48 +0000 Subject: [PATCH] test(conftest): move (not copy) vm artifacts This is to keep free space in the /srv filesystem. Signed-off-by: Nikita Kalyazin --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index 3b75a3fa596..bfc6c6cedd7 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -337,7 +337,7 @@ def microvm_factory(request, record_property, results_dir, netns_factory): if not os.path.isfile(src): continue dst = uvm_data / item - shutil.copy(src, dst) + shutil.move(src, dst) console_data = uvm.console_data if console_data: uvm_data.joinpath("guest-console.log").write_text(console_data)